export declare class SendProductDto {
    chatId: string;
    productId: string;
    body?: string;
}
export declare class SendCatalogDto {
    chatId: string;
    body?: string;
}
export declare class ProductQueryDto {
    page?: number;
    limit?: number;
}
