import { QuoteStatusEnum } from '../schemas/quote.schema';
export declare class UpdateQuoteDto {
    readonly status: QuoteStatusEnum;
    readonly comment: any;
    readonly innerprice?: string;
    readonly projectName?: string;
    readonly project?: any;
    readonly order?: any[];
    readonly colors?: {
        label: string;
        name: string;
    }[];
    readonly totalPrice?: number;
    readonly profile?: any;
}
