import * as React from 'react'; export interface IHeadingProps { children?: any; } export interface IHeadingDataProps { children?: any; } export declare function Heading(props: IHeadingProps): React.JSX.Element; export declare function HeadingData(props: IHeadingDataProps): React.JSX.Element;