import { z } from 'zod'; import type { def } from '../creator/index.js'; /** * Template extractor configuration schema * * Controls how template extraction works when syncing projects. * Template extraction allows updating generator templates from working code. */ export declare const createTemplateExtractorSchema: (context: import("../creator/types.js").DefinitionSchemaParserContext) => z.ZodObject<{ writeMetadata: z.ZodDefault; fileIdRegexWhitelist: z.ZodDefault; }, z.core.$strip>; /** * Template extractor configuration type (output after validation) */ export type TemplateExtractorDefinition = def.InferOutput; //# sourceMappingURL=template-extractor.d.ts.map