/** * @private */ export interface ContextConfigArgs { strict?: boolean; performanceProfile?: boolean; } export declare class ContextConfig { strict: boolean; performanceProfile: boolean; constructor(options: ContextConfigArgs); }