import type { Bank } from "./../../common/Bank.js";
export type PlatformPayoutAccount = {
    bank: Bank;
    number: string;
    holder: string;
};
