///
import { G3TableColumnProps } from '../types';
interface TotalRowProps> {
columns?: G3TableColumnProps[];
pageData?: readonly T[];
hasRowSelection?: boolean;
}
declare function TotalRow>(props: TotalRowProps): JSX.Element | null;
export default TotalRow;