export interface IFirebankWithdrawPost {
    details: IFirebankWithdrawPostDetails;
    externalId: string;
    type: string;
    value: number;
}
export interface IFirebankWithdrawPostDetails {
    document: string;
    key: string;
    keyType: string;
    name: string;
}
export interface IFirebankWithdrawPostResponse {
    status: string;
    transactionId: string;
}
