import React from 'react';
import type { InsightCardProps, InsightCardInfo } from '../types';
export type TitleProps = Pick<InsightCardProps, 'headerTools' | 'title' | 'visualizationOptions' | 'period'> & Pick<InsightCardInfo, 'measures' | 'dimensions' | 'patterns' | 'subspace'>;
export declare const Title: React.FC<TitleProps>;
