import type { LiteralUnion } from '@enonic-types/core';
import type { ClassValue } from 'clsx';
import type { RichTextData } from './RichText';
export interface TextBaseProps extends Omit<React.HTMLAttributes<HTMLElement>, 'className' | 'children'> {
    as?: LiteralUnion<keyof JSX.IntrinsicElements>;
    className?: ClassValue;
    data: RichTextData;
    'data-portal-component-type'?: 'text';
}
