import React, { ReactNode } from 'react'; import { InfoProps } from 'components/info/info'; export interface TypographyProps extends Partial> { children?: React.ReactNode; color?: string; size?: number; weight?: number; lineHeight?: string; className?: string; infoContent?: ReactNode; optContent?: ReactNode; suffix?: ReactNode; gutter?: number; onClick?: () => void; cy?: { typography?: string; info?: string; content?: string; }; } declare const Typography: React.FC; export default Typography;