import type { ProjectManifestSpec } from "../types.js"; export interface CompileConfig { entries: Array<{ file: string; directories: string[]; }>; notices: string[]; } /** Decode literal argv only. Never invoke a shell or expand environment values. */ export declare function commandArguments(command: string): string[]; export declare const COMPILE_COMMANDS_MANIFEST: ProjectManifestSpec; export interface CmakeConfig { directories: string[]; targets: Array<{ files: string[]; directories: string[]; }>; notices: string[]; } /** Literal commands only. Conditional/function bodies are not executed. */ export declare const CMAKE_MANIFEST: ProjectManifestSpec; //# sourceMappingURL=c-config.d.ts.map