import { default as React } from 'react'; import { default as PropTypes } from 'prop-types'; export interface ComboboxItemProps { /** * String representation of the option. * * This value is also used as a typeahead; if a user types "n" while * the Select is open, highlight will move to the first item with a * value starting with `n`. */ value: string; /** * Custom typeahead string. By default, typeahead uses `value`. * Use this prop to pass in a custom string you'd like the user to search * against when using typeahead. */ searchValue?: string; children?: React.ReactNode; /** Never set on Combobox.Item; `label` is what identifies a Combobox.Action */ label?: never; } declare const ComboboxItem: { ({ children, value }: ComboboxItemProps): React.JSX.Element; displayName: string; propTypes: { /** * String representation of the option. * * This value is also used as a typeahead; if a user types "n" while * the Select is open, highlight will move to the first item with a * value starting with `n`. */ value: PropTypes.Validator; /** * Custom typeahead string. By default, typeahead uses `value`. * Use this prop to pass in a custom string you'd like the user to search * against when using typeahead. */ searchValue: PropTypes.Requireable; children: PropTypes.Requireable>; }; }; export default ComboboxItem; //# sourceMappingURL=ComboboxItem.d.ts.map