import type { ChatProvider } from '@svadmin/core'; interface Props { /** The bound value of the input */ value: string; /** The chat provider to generate suggestions */ provider?: ChatProvider; /** Context given to the AI to help it predict the text */ context?: string; /** Standard input props */ placeholder?: string; class?: string; id?: string; disabled?: boolean; name?: string; type?: string; } declare const SmartSuggest: import("svelte").Component; type SmartSuggest = ReturnType; export default SmartSuggest;