import type { Resource } from "@modelcontextprotocol/sdk/types.js"; import type { LLMConfig } from "../components/chat/types"; interface UsePropsLLMProps { llmConfig: LLMConfig | null; } interface GeneratePropsParams { resource: Resource; resourceAnnotations?: Record; propsSchema?: any; } interface GeneratedProp { key: string; value: string; } export declare function usePropsLLM({ llmConfig }: UsePropsLLMProps): { generateProps: ({ resource, resourceAnnotations, propsSchema, }: GeneratePropsParams) => Promise; isAvailable: boolean; }; export {}; //# sourceMappingURL=usePropsLLM.d.ts.map