import { Axios } from 'axios'; import { BadRequest } from '../interface'; import { BanksResponse, CountriesResponse, ListBanksQueryParams, StatesResponse } from './interface'; export declare class Misc { private http; constructor(http: Axios); banks(query?: ListBanksQueryParams): Promise; countries(): Promise; states(country?: string): Promise; }