declare class SingleMessageDto {
    type: string;
    message?: string;
    file?: any;
    attachment_id?: string;
    links?: string[];
    content?: any;
    url?: any;
}
export declare class SendMessagesDto {
    file?: any;
    attachment_id?: string;
    messages: SingleMessageDto[];
}
export {};
