import { URI } from '../model/uri'; /** * Returns the URI for the templates directory within a workspace root. * * The folder is read from `foam.templates.folder` (default `.foam/templates`). * The configured value may contain `/` separators for nested paths. * * The result is derived from {@link rootUri} via `joinPath`, so it inherits * the workspace root's scheme/authority — safe for both Node and browser * (web extension) builds. */ export declare function getTemplatesDir(rootUri: URI): URI; /** * Gets the candidate URIs for the daily note template given a templates directory. * Pure function — no VS Code dependency. */ export declare function getDailyNoteTemplateCandidateUris(templatesDir: URI): URI[]; /** * Gets the candidate URIs for the new-note template given a templates directory. */ export declare function getNewNoteTemplateCandidateUris(templatesDir: URI): URI[]; //# sourceMappingURL=template-discovery.d.ts.map