import React from 'react'; import { Property } from 'csstype'; import type { Typographies, Colors } from '../../themes/types'; export type TypographyProps = { center?: boolean; children: React.ReactNode; color: Colors; display?: Property.Display; ellipsis?: boolean; lineThrough?: boolean; htmlTitle?: string; testID?: string; variant: Typographies; fontWeight?: number; }; declare const Typography: ({ center, children, color, display, ellipsis, lineThrough, htmlTitle, testID, variant, fontWeight, }: TypographyProps) => React.JSX.Element; export default Typography;