import type { JSX } from 'solid-js'; import type { AutocompleteStateRenderProps } from '../../states/create-autocomplete-state'; import type { UnmountableProps } from '../../utils/create-unmountable'; import type { HeadlessPropsWithRef, ValidConstructor } from '../../utils/dynamic-prop'; import type { Prettify } from '../../utils/types'; export type ComboboxOptionsBaseProps = Prettify>; export type ComboboxOptionsProps = HeadlessPropsWithRef>; /** * The popup list of a `Combobox`. Unmounts while closed unless * `unmount={false}` is set. * * Renders a `
    ` by default. * * @see {@link https://github.com/lxsmnsyc/terracotta/blob/main/docs/components/combobox.md} */ export declare function ComboboxOptions(props: ComboboxOptionsProps): JSX.Element; //# sourceMappingURL=ComboboxOptions.d.ts.map