import { default as React } from 'react'; import { default as PropTypes } from 'prop-types'; export interface ComboboxHeadingProps { /** * Text of the heading */ text: string; /** * Display variant of heading * `bold` - Dark, large headings * `hint` - Light, small headings */ kind?: "bold" | "hint"; /** Never set on Combobox.Heading; headings are not selectable */ value?: never; searchValue?: never; label?: never; } declare const ComboboxHeading: { ({ text, kind }: ComboboxHeadingProps): React.JSX.Element; displayName: string; propTypes: { /** * Text of the heading */ text: PropTypes.Validator; /** * Display variant of heading * `bold` - Dark, large headings * `hint` - Light, small headings */ kind: PropTypes.Requireable; }; }; export default ComboboxHeading; //# sourceMappingURL=ComboboxHeading.d.ts.map