@formant/ava-react
Version:
React components of AVA.
5 lines (4 loc) • 331 B
TypeScript
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>;