import { RichTextNode } from '@uniformdev/richtext'; import { ComponentProps } from '@/types/cskTypes'; type Size = 'sm' | 'base' | 'lg' | 'xl' | '2xl'; export type RichTextAdditionalProps = { className?: string; }; export type RichTextParameters = { text?: RichTextNode; size?: Size; color?: string; font?: string; lineCountRestrictions?: string; }; export { default } from './rich-text'; export type RichTextProps = ComponentProps & RichTextAdditionalProps;