import { IGeoCoordinates } from "./interface";
export interface DoTransactionInterface {
    type: number | string;
    amount: string;
    currency: string;
    note: string;
    accountId: number;
    validate: string;
    bankId?: number | string;
    wireTransferType?: number;
    geoCoordinates?: IGeoCoordinates | null;
}
export interface GetTransactionInterface {
    status?: number;
    page_size?: number;
    from_date?: string;
    to_date?: string;
    start_index?: number;
    transaction_type?: number | null;
    account_id?: number;
    transaction_classification?: number;
    geoCoordinates?: IGeoCoordinates | null;
}
export interface GetAccountLimit {
    account_id: number;
    geoCoordinates?: IGeoCoordinates | null;
}
