export type DebugFeatures = 'Run API Tests' | 'Run Unsafe API Tests' | 'Log Endpoint Debug' | 'Log API Headers' | 'Log API Bodies' | 'Log Appliance IDs' | 'Log Debug as Info';
export interface Config {
    name: string;
    type: string;
    version: string;
    whiteList: string[];
    blackList: string[];
    apiKey: string;
    accessToken: string;
    accessTokenURL?: string;
    refreshToken: string;
    pollIntervalSeconds: number;
    debug: boolean;
    debugFeatures: DebugFeatures[];
    unregisterOnShutdown: boolean;
}
//# sourceMappingURL=config-types.d.ts.map