/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { ExtendedColumnProps } from '../interfaces/ExtendedColumnProps';
import { GridCellsSettings } from '../interfaces/GridCellsSettings';
import { PropType } from 'vue';
/**
 * @hidden
 */
export interface FooterCellProps {
    column: ExtendedColumnProps;
    columnIndex: number;
    isRtl: boolean;
    rowIndex: number;
    cells?: GridCellsSettings;
}
/**
 * @hidden
 */
declare const FooterCell: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
    column: PropType<ExtendedColumnProps>;
    columnIndex: PropType<number>;
    isRtl: PropType<boolean>;
    rowIndex: PropType<number>;
    cells: PropType<GridCellsSettings>;
}>, {}, {}, {
    columnStyles(): {
        left: string;
        right: string;
    };
    tdClassName(): string;
}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
    column: PropType<ExtendedColumnProps>;
    columnIndex: PropType<number>;
    isRtl: PropType<boolean>;
    rowIndex: PropType<number>;
    cells: PropType<GridCellsSettings>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { FooterCell };
