import { Config } from './common-types'; import { BaseError } from './error'; export declare class AccountNotActive extends BaseError { argumentName: string; argumentValue: string; cause?: Error | undefined; constructor(message: string, argumentName: string, argumentValue: string, cause?: Error | undefined); } export declare const createApplication: (config: Config) => Promise<{ appName: any; envName: string; developerLogin?: string | undefined; developerPassword?: string | undefined; developerSecretToken?: string | undefined; platformUrl?: string | undefined; }>;