/** * Set command - writes unified settings to agent configuration. */ interface SetOptions { agent: string; path?: string; replace: boolean; } /** Handle set command */ declare function handleSet(setting: string, value: string, options: SetOptions): void; export { handleSet };