import { BunqKey } from "./BunqKey"; import { BunqServerConnection } from "./BunqInterfaces"; export declare class BunqApiSetup { constructor(aConnection: BunqServerConnection, aKey: BunqKey, aSecretApiKey: string, aInstallationToken: string); installKey(): Promise; createDeviceServer(description: string): Promise; createSessionServer(): Promise; private createOptions(method, endPoint, body); private createDefaultOptions(); private connection; private key; private secretApiKey; private installationToken; }