import type { Command as _Command } from "bits-ui"; import type { Component } from "svelte"; 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<_Command.RootProps, {}, "ref" | "value">; CommandInput: Component<_Command.InputProps, {}, "ref" | "value">; CommandList: Component<_Command.ListProps, {}, "ref">; CommandEmpty: Component<_Command.EmptyProps, {}, "ref">; CommandGroup: Component<_Command.GroupProps, {}, "ref">; CommandItem: Component<_Command.ItemProps, {}, "ref">; } } declare const Combobox: Component & import("@sjsf/form/fields/widgets").SingleSelectOptions, {}, "value">; type Combobox = ReturnType; export default Combobox;