import { Types } from "mongoose";
export declare class LeadAttachment {
    filename: string;
    path: string;
    url: string;
    leadId: string;
}
export declare const LeadsAttachmentSchema: import("mongoose").Schema<LeadAttachment, import("mongoose").Model<LeadAttachment, any, any, any, import("mongoose").Document<unknown, any, LeadAttachment, any, {}> & LeadAttachment & {
    _id: Types.ObjectId;
} & {
    __v: number;
}, any>, {}, {}, {}, {}, import("mongoose").DefaultSchemaOptions, LeadAttachment, import("mongoose").Document<unknown, {}, import("mongoose").FlatRecord<LeadAttachment>, {}, import("mongoose").ResolveSchemaOptions<import("mongoose").DefaultSchemaOptions>> & import("mongoose").FlatRecord<LeadAttachment> & {
    _id: Types.ObjectId;
} & {
    __v: number;
}>;
export type LeadsAttachmentDocument = LeadAttachment & Document;
