/** * DTO for push notification recipients * Used to define the recipients of a push notification */ export declare class PushReceiverDto { /** * The user ID that will receive the push notification */ userId: string; /** * List of user device tokens * Must contain at least one token */ deviceTokens: string[]; }