import { type Plugin } from 'vite'; import { type AppContext } from '../../context'; export { generate as generateClientAppEntry, type AppEntryOptions as ClientAppEntryOptions, } from './virtual/app'; export interface TypedownPluginCache { devHtml: string | undefined; basePath: string; rootDirectory: string; } export interface TypedownPluginOptions { context?: AppContext; /** Vault directory relative to the host project root */ root?: string; } export declare function typedown(options?: TypedownPluginOptions): Plugin[]; //# sourceMappingURL=index.d.ts.map