import * as React from 'react'; export interface TableTitleProps { title?: string; className?: string; tooltip?: string; children?: string | React.ReactNode; } export declare const TableTitle: React.FC;