import { type Logger } from 'vite'; import { TypedownContext } from './lib/typedown-context'; import { TdLogger } from './lib/logger'; export interface AppContext { root: string; logger: TdLogger; getTdContext: () => Promise; createViteLogger: () => Logger; dispose: () => void; } export declare const CONFIG_FILE_NAMES: string[]; export declare function createAppContext(root: string): AppContext; export declare function resolveProjectRoot(from: string): string; //# sourceMappingURL=context.d.ts.map