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