import { AuthScope } from './constants';
export declare class AppConfig {
    appDomain?: string;
    scopes: (AuthScope | string)[];
    redirectPath: string;
    manifestPath: string;
    coreNode?: string;
    authenticatorURL?: string;
    constructor(scopes?: string[], appDomain?: string | undefined, redirectPath?: string, manifestPath?: string, coreNode?: string | undefined, authenticatorURL?: string);
    redirectURI(): string;
    manifestURI(): string;
}
