import { FormAssociated, ListboxElement } from '@ni/fast-foundation'; declare class Combobox extends ListboxElement { } interface Combobox extends FormAssociated { } declare const FormAssociatedCombobox_base: typeof Combobox; /** * A form-associated base class for the Combobox component. This was copied from the * FAST FormAssociatedCombobox (which is not exported by fast-foundation) * * @internal */ export declare class FormAssociatedCombobox extends FormAssociatedCombobox_base { proxy: HTMLInputElement; } export {};