import type { FC, PropsWithChildren } from 'react'; export interface TextProps { className?: string; level?: '1' | '2' | '3' | '4' | '5' | '6' | '7'; fontFamilyVariant?: 'primary' | 'secondary'; fontWeight?: 'normal' | 'bold'; textColorVariant?: 'primary' | 'secondary' | 'header' | 'error' | 'script'; } export declare const Text: FC>;