import type { Profile } from '../profiles/index.js'; import type { FileWriter } from '../services/file-writer.js'; export type CodexSetupOptions = { cwd: string; profiles: Profile[]; writer: FileWriter; isSalesforceProject: boolean; }; export declare function setupCodex(opts: CodexSetupOptions): void;