import AccountService from './account/AccountService';
import MarketService from './market/MarketService';
declare class CryptopiaClient {
    private httpsClient;
    private accountService;
    private marketService;
    constructor(key?: string, secret?: string);
    readonly market: MarketService;
    readonly account: AccountService;
}
export default CryptopiaClient;
