/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { CellOptions } from './CellOptionsInterface';
import { ExcelExportColumnProps } from '../ExcelExportColumn.js';
/**
 * @hidden
 */
export declare const toExporterColumns: (sourceColumns?: ExcelExportColumnProps[]) => ExporterColumn[];
/**
 * @hidden
 */
export declare class ExporterColumn {
    title?: string;
    field?: string;
    hidden?: boolean;
    locked?: boolean;
    width?: number;
    columns: ExporterColumn[] | null;
    groupHeaderTemplate: any;
    groupFooterTemplate: any;
    footerTemplate: any;
    headerCellOptions?: CellOptions;
    cellOptions?: CellOptions;
    groupHeaderCellOptions?: CellOptions;
    groupFooterCellOptions?: CellOptions;
    footerCellOptions?: CellOptions;
    constructor(column: ExcelExportColumnProps, columnIndex?: number);
}
