import { I_Owner } from 'src/modules/journey/backend/responses/schemas';
export type T_NotificationFormTypeBodyParams = {
    name: string;
    content: {
        arContent: string;
        enContent: string;
    };
    to: string;
    from: string;
    customSender: string;
    type: string;
    triggerId: string;
    ownerId: string;
    owner: I_Owner;
    recipientName: string;
    recipientPhone: string;
    recipientEmail: string;
};
export interface I_FcmSubscriptionPayload {
    token: string;
    customerId: string;
}
//# sourceMappingURL=index.d.ts.map