/** * Get command - reads unified settings from agent configuration. */ interface GetOptions { agent: string; path?: string; format: string; } /** Handle get command */ declare function handleGet(setting: string, options: GetOptions): void; export { handleGet };