/** * @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 FooterRowProps { columns: ExtendedColumnProps[]; isRtl: boolean; rowIndex: number; cells?: GridCellsSettings; } /** * @hidden */ declare const FooterRow: import('vue').DefineComponent; columns: PropType; rowIndex: PropType; cells: PropType; }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; columns: PropType; rowIndex: PropType; cells: PropType; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { FooterRow };