import { Document, Types } from "mongoose";
export declare class Quotation {
    leadId: string;
    employeeId: string;
    sentAt: Date;
    remarks?: string;
}
export type QuotationDocument = Quotation & Document;
export declare const QuotationSchema: import("mongoose").Schema<Quotation, import("mongoose").Model<Quotation, any, any, any, Document<unknown, any, Quotation, any, {}> & Quotation & {
    _id: Types.ObjectId;
} & {
    __v: number;
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, Quotation, Document<unknown, {}, import("mongoose").FlatRecord<Quotation>, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").FlatRecord<Quotation> & {
    _id: Types.ObjectId;
} & {
    __v: number;
}>;
