import { ForwardedRef, MouseEvent, RefObject } from 'react'; import CSS from 'csstype'; declare function _Text(props: { text?: string; className?: string; style?: CSS.Properties; fontSize?: string; color?: string; onClick?: (e: MouseEvent) => void; pointer?: boolean; padding?: string; margin?: string; textCursor?: boolean; wrap?: boolean; textAlign?: string; ref?: RefObject; underline?: boolean; bold?: boolean; userSelect?: boolean; gridArea?: string; alignSelf?: string; justifySelf?: string; placeSelf?: string; boxShadow?: string; backgroundColor?: string; width?: string; height?: string; maxWidth?: string; maxHeight?: string; minWidth?: string; minHeight?: string; borderRadius?: string; children?: string; whitespaceWrap?: boolean; }, ref: ForwardedRef): JSX.Element; declare const Text: typeof _Text; export declare const AnimatedText: typeof _Text; export default Text;