interface UseComboboxTargetPropsInput { targetType: 'input' | 'button' | undefined; withAriaAttributes: boolean | undefined; withKeyboardNavigation: boolean | undefined; withExpandedAttribute: boolean | undefined; onKeyDown: React.KeyboardEventHandler | undefined; onClick: React.MouseEventHandler | undefined; autoComplete: string | undefined; } export declare function useComboboxTargetProps({ onKeyDown, onClick, withKeyboardNavigation, withAriaAttributes, withExpandedAttribute, targetType, autoComplete, }: UseComboboxTargetPropsInput): { onKeyDown: (event: React.KeyboardEvent) => void; onClick: (event: React.MouseEvent) => void; }; export {};