import { User } from '../users/user.entity';
export declare class PayoutAccount {
    id: string;
    user: User;
    account_type: 'bank' | 'mobile_money';
    bank_name: string;
    bank_code: string;
    account_number: string;
    account_name: string;
    mobile_number: string;
    mobile_network: string;
    country: string;
    currency: string;
    is_verified: boolean;
    created_at: Date;
    updated_at: Date;
}
