import { QueryObserverOptions } from '@tanstack/react-query'; import { FunctionKeyV2 } from '../../constants'; import { ScanOllamaModelsInput, ScanOllamaModelsOutput } from './types'; type UseScanOllamaModels = [ FunctionKeyV2.SCAN_OLLAMA_MODELS, ScanOllamaModelsInput ]; type Options = QueryObserverOptions; export declare const useScanOllamaModels: (input: ScanOllamaModelsInput, options?: Omit) => import('@tanstack/react-query').UseQueryResult; export {};