export declare class InitiateWithdrawalDto {
    amount: number;
    bankCode: string;
    accountNumber: string;
    narration?: string;
    metadata?: Record<string, any>;
    userId: string;
}
export declare class VerifyWithdrawalDto {
    reference: string;
    userId: string;
}
export declare class GetWithdrawalHistoryDto {
    startDate?: string;
    endDate?: string;
    page?: number;
    limit?: number;
    userId: string;
}
