import type { ElementType, HTMLAttributes } from 'react'; export type MessageHighlightProps = { is?: ElementType; clickable?: boolean; variant?: 'critical' | 'relevant' | 'other' | 'link'; className?: string; children: any; title?: string; } & HTMLAttributes; declare function MessageHighlight({ is: Tag, variant, className, clickable, ...props }: MessageHighlightProps): import("react/jsx-runtime").JSX.Element; export default MessageHighlight; //# sourceMappingURL=MessageHighlight.d.ts.map