import React from 'react';
export interface HighlightTextProps {
    as?: 'div' | 'span';
    children: React.ReactNode;
    size?: 'normal' | 'small';
    variant?: 'error' | 'highlight' | 'info' | 'muted' | 'success' | 'warning';
}
export declare function HighlightText({ as, children, size, variant, }: HighlightTextProps): import("react/jsx-runtime").JSX.Element;
