export declare class CreateContractorDto {
    contractor_name: string;
    type_id: number;
    phone_number?: string;
    email?: string;
    project_id?: number;
    notes?: string;
}
