export declare const SCHEDULED_PAYMENT_STATUSES: readonly ["SCHEDULED", "COMPLETED", "ERROR", "CANCELED"];
export declare type ScheduledPaymentStatus = typeof SCHEDULED_PAYMENT_STATUSES[number];
export declare type SchedulePayment = {
    id: string;
    status: ScheduledPaymentStatus;
    scheduledDate: string;
    description: string;
};
