import type { PaymentTransactionNotificationTypes } from './PaymentTransactionNotificationTypes';
export type GetNotificationsClass = {
    notificationType?: PaymentTransactionNotificationTypes;
    address?: string | null;
    isActive?: boolean;
    secret?: string | null;
};
