/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PropType } from 'vue'; import { GridSelectionChangeEvent } from './interfaces/events'; import { GridColumnProps } from './interfaces/GridColumnProps'; import { GridProps } from './interfaces/GridProps'; /** * Represents the Kendo UI for Vue Grid's StatusItem object. */ export interface StatusItem { /** * The type of the status item. * Could be `sum`, `min`, `max`, `average`, `count`, `isTrue`, `isFalse`, `earliest` or `latest`. */ type: string; /** * The calculated value of the status item. */ value: number | boolean | Date; /** * The formatted value of the status item. */ formattedValue: string; } /** * Represents the props of the Kendo UI for Vue Grid's StatusBar component. */ export interface StatusBarProps { /** * The collection of status items to display in the status bar. */ data: StatusItem[]; } /** * Represents the Kendo UI for Vue Grid's StatusBar component. */ export declare const StatusBar: import('vue').DefineComponent; default: () => any[]; }; }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly; default: () => any[]; }; }>> & Readonly<{}>, { data: StatusItem[]; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; /** * @hidden */ export declare const leafColumns: (columns: GridColumnProps[]) => GridColumnProps[]; /** * Represents the arguments of the getStatusData function. */ export type StatusDataArgs = Pick & { dataItemKey: Required['dataItemKey']; }; /** * Calculates the status data. * * @param args StatusDataArgs * @returns StatusItem[] */ export declare const getStatusData: (args: StatusDataArgs) => StatusItem[];