import { default as React } from 'react'; import { default as PropTypes } from 'prop-types'; export interface MultiSelectItemProps { /** * 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; /** String to use for typeahead behavior */ searchValue?: string; /** * Text to display in the token and summary for this item. * Falls back to `searchValue`, then `value`, when not provided. */ tokenLabel?: string; /** JSX representation of item */ children?: React.ReactNode; } declare const MultiSelectItem: { ({ children }: MultiSelectItemProps): 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; /** String to use for typeahead behavior */ searchValue: PropTypes.Requireable; /** * Text to display in the token and summary for this item. * Falls back to `searchValue`, then `value`, when not provided. */ tokenLabel: PropTypes.Requireable; /** JSX representation of item */ children: PropTypes.Requireable>; }; }; export default MultiSelectItem; //# sourceMappingURL=MultiSelectItem.d.ts.map