export interface MarkdocSchemaOptions { from: string[]; out: string; check?: boolean; } /** * Generates a `markdoc.extend.tagsFile` YAML file (tag-name -> MarkdocTagSchema) * from one or more project schema modules, so a project's own custom Markdoc * tags get the same static value-checking recheck's built-in `realm` schema * gets. Each module is extracted in isolation — empty base maps passed to * `extractStatics` — so the file it produces carries ONLY that project's own * tags, never built-ins; those come from `schema: 'realm'` at lint time * instead, and layering them in here would make them impossible to tell * apart from a project's real customizations. */ export declare function markdocSchemaCommand(options: MarkdocSchemaOptions): Promise; //# sourceMappingURL=markdoc-schema.d.ts.map