/// interface Props { color?: string; size?: number; title: string; } declare const H2: ({ color, size, title }: Props) => JSX.Element; export default H2;