/** Payout status types */ export declare const PayoutStatus: { readonly Sent: "SENT"; readonly Failed: "FAILED"; readonly Paid: "PAID"; }; export type PayoutStatus = (typeof PayoutStatus)[keyof typeof PayoutStatus];