/** * Get-raw command - reads raw config values by dotted path. */ interface GetRawOptions { agent: string; path?: string; format: string; } /** Handle get-raw command */ declare function handleGetRaw(key: string, options: GetRawOptions): void; export { handleGetRaw };