import { type IContext, type IGlobalContext } from './common'; export declare const cachedContext: { global?: string; local?: string; project?: 'assistant' | 'spfx'; }; /** * Find the global and local context * @param baseFolder * @returns */ export declare const findContext: (baseFolder: string) => IContext; /** * Find the global and local context, but typed as Required. For use when you are sure that the context is valid * @param baseFolder * @returns */ export declare const getContext: (baseFolder: string) => Required; /** * Get the global config * @param optional If true, will not throw if the config is not found * @returns */ export declare const getConfigGlobal: (optional?: boolean) => { config: IGlobalContext; rootConfig: string; };