/** * @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; columnIndex: PropType; isRtl: PropType; rowIndex: PropType; cells: PropType; }>, {}, {}, { columnStyles(): { left: string; right: string; }; tdClassName(): string; }, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; columnIndex: PropType; isRtl: PropType; rowIndex: PropType; cells: PropType; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { FooterCell };