import { CTraderAccount } from "./CTraderAccount"; import { CTraderApplicationParameters } from "./CTraderApplicationParameters"; export declare class CTraderApplication { #private; private constructor(); get isConnected(): boolean; get isAuthenticated(): boolean; openConnections(): Promise; authenticate(): Promise; loginTradingAccount(accessToken: string, accountId: string): Promise; static create({ clientId, clientSecret, demoProxy, liveProxy, }: CTraderApplicationParameters): Promise; }