export interface Suggestion { /** The text to insert into the input */ value: string; /** Display label shown in the dropdown */ label: string; /** Optional secondary text (e.g., category) */ detail?: string; } interface Props { /** List of suggestions to display */ suggestions: Suggestion[]; /** Whether the dropdown is visible */ visible: boolean; /** Currently highlighted index */ selectedIndex: number; /** Called when a suggestion is accepted */ onAccept: (suggestion: Suggestion) => void; } declare const ConsoleAutocomplete: import("svelte").Component; type ConsoleAutocomplete = ReturnType; export default ConsoleAutocomplete;