export declare const createGitLastModified: ({ cwd, gitBinary, }?: { cwd?: string; gitBinary?: string; }) => (filePath: string) => Promise; export declare const getGitLastModified: (filePath: string) => Promise; /** * Resolves a page's last-modified date with a frontmatter-first chain: * an explicit `lastModified` frontmatter value wins, then the file's git * author time, then nothing (surfaces omit the date). The frontmatter * override keeps dates working on shallow clones, where git history for * untouched files is unavailable. */ export declare const createLastModified: ({ cwd, gitBinary, }?: { cwd?: string; gitBinary?: string; }) => (filePath: string) => Promise; export declare const getLastModified: (filePath: string) => Promise; //# sourceMappingURL=last-modified.d.ts.map