import * as React from 'react';
import { ExcelExportColumnProps } from '../ExcelExportColumn';
/**
 * Represents the props that will be passed to the ExcelExportFooter component when the template is rendered.
 */
export interface ExcelExportFooterProps {
    column: ExcelExportColumnProps;
    columnIndex: number;
}
/**
 * Represents the footer of column.
 */
export default class ExcelExportFooter extends React.PureComponent<ExcelExportFooterProps> {
}
