/** * Marker chant writes at the top of files it generates (worker/workflow/activities * bootstrap for Temporal Ops, etc.). Discovery must not treat these as authored * infra source: they hold no Declarables, they self-execute on import (the worker * bootstrap calls `run()`), and they use runtime patterns the authored-source lint * rules forbid (dynamic `process.env[...]` access, spreads). Skipping them keeps * `chant lint`/`build` from importing or linting the tool's own output. */ export declare const GENERATED_MARKER = "Generated by chant \u2014 do not edit directly"; /** * Recursively find all TypeScript infrastructure files in a directory * @param path - The directory path to search * @returns Array of file paths to .ts files (excluding test files and chant-generated files) */ export declare function findInfraFiles(path: string): Promise; //# sourceMappingURL=files.d.ts.map