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