export interface PugTailConfig { files?: { input?: string | string[]; output?: string; root?: string; render?: string[]; }; extension?: string; basedir?: string; doctype?: string; pretty?: boolean; format?: 'html' | 'ast' | 'pug-code'; data?: string | Record; dataKey?: string; watch?: { enabled?: boolean; debounce?: number; }; silent?: boolean; debug?: boolean; validation?: { scopeIsolation?: 'error' | 'warn' | 'off'; allowedGlobals?: string[]; }; } //# sourceMappingURL=types.d.ts.map