export interface ComboboxEventsTargetProps extends React.ComponentProps { /** Target element */ children: React.ReactNode; /** Key of the prop that should be used to access element ref */ refProp?: string; /** Determines whether component should respond to keyboard events, `true` by default */ withKeyboardNavigation?: boolean; /** Determines whether the target should have `aria-` attributes, `true` by default */ withAriaAttributes?: boolean; /** Determines whether the target should have `aria-expanded` attribute, `false` by default */ withExpandedAttribute?: boolean; /** Determines which events should be handled by the target element. * `button` target type handles `Space` and `Enter` keys to toggle dropdown opened state. * `input` by default. * */ targetType?: "button" | "input"; /** Input autocomplete attribute */ autoComplete?: string; } export declare function ComboboxEventsTarget(props: ComboboxEventsTargetProps): import("react").ReactElement>;