import React from 'react'; import { TextProps as TextPropsPrimitive } from '@modulz/primitives'; export declare type TextProps = TextPropsPrimitive & { variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'large' | 'small'; }; export declare const Text: React.ForwardRefExoticComponent & React.RefAttributes>;