/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GridColumnProps } from '../interfaces/GridColumnProps'; import { GridComponentProps } from '../interfaces/GridProps'; /** * @hidden */ export declare const isPremiumGridByProps: (props: GridComponentProps) => { [key: string]: boolean; }; /** * @hidden */ export declare const isPremiumGridByColumns: (columns: GridColumnProps[]) => { [key: string]: boolean; }; /** * @hidden */ export declare const isPremiumGridByComponents: (props: GridComponentProps) => { [key: string]: boolean; }; /** * @hidden */ export declare const gridPremiumFeatures: (props: GridComponentProps, columns: GridColumnProps[]) => string[];