/** * The type of payout: “BATCH” or “SIMPLE”. * BATCH payouts include a list of payout entries that can be considered settled. * SIMPLE payouts do not have any payout entries associated with them * and will show up as one of the payout entries in a future BATCH payout. */ export declare const PayoutType: { readonly Batch: "BATCH"; readonly Simple: "SIMPLE"; }; export type PayoutType = (typeof PayoutType)[keyof typeof PayoutType];