export declare type CompiledEntry = { data: string; date: string; minutes: number; pubdate: string; tags: string; title: string; html: string; }; declare const compileOld: (inDir: string, outDir: string) => Promise; declare const build: (inDir: string, outDir: string, options?: { noIds?: boolean | undefined; noTokensJson?: boolean | undefined; within?: number | undefined; } | undefined) => Promise; declare const compile: (inDir: string, outDir: string, options?: { noIds?: boolean | undefined; noTokensJson?: boolean | undefined; within?: number | undefined; } | undefined) => Promise; declare const compileNew: (inDir: string, outDir: string, options?: { noIds?: boolean | undefined; noTokensJson?: boolean | undefined; within?: number | undefined; } | undefined) => Promise; export { compileOld, compileNew, compile, build };