@progress/kendo-vue-grid
Version:
35 lines (34 loc) • 1.41 kB
TypeScript
/**
* @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<import('vue').ExtractPropTypes<{
isRtl: PropType<boolean>;
columns: PropType<ExtendedColumnProps[]>;
rowIndex: PropType<number>;
cells: PropType<GridCellsSettings>;
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
isRtl: PropType<boolean>;
columns: PropType<ExtendedColumnProps[]>;
rowIndex: PropType<number>;
cells: PropType<GridCellsSettings>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { FooterRow };