/** List of possible destinations against which a payout can be made. */ export declare const DestinationType: { readonly BankAccount: "BANK_ACCOUNT"; readonly Card: "CARD"; readonly SquareBalance: "SQUARE_BALANCE"; readonly SquareStoredBalance: "SQUARE_STORED_BALANCE"; }; export type DestinationType = (typeof DestinationType)[keyof typeof DestinationType];