export declare class SendNotificationDto {
    title: string;
    description: string;
    tokens: string[];
    data?: Record<string, any>;
}
