import { default as React } from 'react'; import { default as PropTypes } from 'prop-types'; export interface ComboboxActionProps { /** Side effect to run on selection */ onSelect: () => void; /** Label for action */ label: string; /** Never set on Combobox.Action; `value` belongs to selectable Combobox.Items */ value?: never; searchValue?: never; } declare const ComboboxAction: { ({ onSelect }: ComboboxActionProps): React.JSX.Element; displayName: string; propTypes: { /** Side effect to run on selection */ onSelect: PropTypes.Validator<(...args: any[]) => any>; /** Label for action */ label: PropTypes.Validator; }; }; export default ComboboxAction; //# sourceMappingURL=ComboboxAction.d.ts.map