import type { RecipientType } from './events';
interface PushPayload {
    title: string;
    body: string;
    data?: Record<string, string>;
}
export declare function sendPushToRecipient(recipient: {
    type: RecipientType;
    id: string;
}, payload: PushPayload): Promise<void>;
export {};
//# sourceMappingURL=push.d.ts.map