import React from 'react'; import { MQ } from 'newskit'; import { EventContext } from '..'; interface TitleProps { title: string; href?: string; overrides?: { stylePreset?: MQ; typographyPreset?: MQ; }; eventContext?: EventContext; } declare const Title: React.FC; export default Title;