import React, { ReactElement } from 'react'; import { Theme } from '@leafygreen-ui/lib'; import { ComboboxSize } from '../types'; /** * Util that returns the leftGlyph and rightGlyph. */ export declare const getGlyphs: ({ withIcons, isSelected, glyph, optionTextId, disabled, darkMode, size, multiselect, theme, isFocused, }: { withIcons: boolean; isSelected: boolean; glyph?: ReactElement; optionTextId: string; disabled: boolean; darkMode: boolean; size: ComboboxSize; multiselect: boolean; theme: Theme; isFocused: boolean; }) => { leftGlyph: React.JSX.Element | null; rightGlyph: false | React.JSX.Element; }; //# sourceMappingURL=getGlyphs.d.ts.map