import { default as React } from 'react'; import { default as PropTypes } from 'prop-types'; export interface SelectItemProps { /** * 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 Select.Item; `onSelect` is what identifies a Select.Action */ onSelect?: never; } declare const SelectItem: { ({ children }: SelectItemProps): 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 SelectItem; //# sourceMappingURL=SelectItem.d.ts.map