import * as React from 'react';
import { ExcelExportColumnProps } from '../ExcelExportColumn';
import { AggregateResult, GroupResult } from '@progress/kendo-data-query';
/**
 * Represents the props that will be passed to the ExcelExportGroupFooter component when the template is rendered.
 */
export interface ExcelExportGroupFooterProps {
    field: string;
    column: ExcelExportColumnProps;
    aggregates: AggregateResult;
    group: GroupResult;
}
/**
 * Represents the footer of the column group.
 */
export default class ExcelExportGroupFooter extends React.PureComponent<ExcelExportGroupFooterProps> {
}
