import { Button } from '..'; import * as React from 'react'; export type ComboboxProps = { options?: { value: string; label: string; }[]; placeholder?: string; inputPlaceholder?: string; value?: string; onChange: (value: string) => void; className?: string; } & Omit, 'onChange' | 'value' | 'className' | 'aria-expanded'>; export declare const Combobox: ({ options, placeholder, inputPlaceholder, value, onChange, className, ...props }: ComboboxProps) => React.JSX.Element;