import type { Component } from 'svelte'; import type { Command } from 'bits-ui'; import type { ButtonProps } from '../types/button'; import '../types/popover'; declare module '@sjsf/form' { interface UiOptions { shadcnComboboxTrigger?: ButtonProps; shadcnComboboxInput?: Command.InputProps; shadcnComboboxEmptyText?: string; } } declare module '../context.js' { interface ThemeComponents { Command: Component; CommandInput: Component; CommandList: Component; CommandEmpty: Component; CommandGroup: Component; CommandItem: Component; } } declare const Combobox: Component & import("@sjsf/form/fields/widgets").SingleSelectOptions, {}, "value">; type Combobox = ReturnType; export default Combobox;