export interface DocsMetadata { path: string; data: Record; } /** * Read the leading YAML frontmatter from a markdown file. * * Relative paths resolve from the host repo root so the command behaves the * same no matter which directory invoked it. */ export declare function readDocsMetadata(repoRoot: string, inputPath: string): DocsMetadata; /** Read one top-level metadata key, failing when the key is absent. */ export declare function readDocsMetadataKey(metadata: Record, key: string, inputPath: string): unknown; //# sourceMappingURL=docs-meta.d.ts.map