import type { Profile } from '../profiles/index.js'; import { type FileWriter } from './file-writer.js'; export type AdvisoryModeResult = { enabled: boolean; path: string; files: string[]; }; export declare function setupAdvisoryMode(cwd: string, profiles: Profile[], writer: FileWriter): AdvisoryModeResult;