import { Types } from 'mongoose';
export declare class CreateQuotationDto {
    id: string;
    name?: string;
}
declare class DescriptionItemDto {
    description: string;
    price: string;
    remark?: string;
}
export declare class CreateEstimateDto {
    description: DescriptionItemDto[];
    notes: string[];
    quotation_id: Types.ObjectId;
}
export {};
