/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GridCustomCellProps } from '@progress/kendo-react-grid'; import * as React from 'react'; /** * @hidden */ export type RemoveSeriesContextProps = { onRemove: (seriesId: number) => void; count: number; }; /** * @hidden */ export declare const RemoveSeriesContext: React.Context; /** * @hidden */ export type ReorderContextProps = { reorder: (dataItem: any) => void; dragStart: (dataItem: any) => void; }; /** * @hidden */ export declare const ReorderContext: React.Context; /** * @hidden */ export type SeriesEditContextProps = { enterEdit: (dataItem: any, field: string | undefined) => void; exitEdit: (dataItem: any, field: string | undefined) => void; }; /** * @hidden */ export declare const SeriesEditContext: React.Context; /** * @hidden */ export declare const SeriesDataCell: React.FC; /** * @hidden */ export declare const SeriesDataEditCell: React.FC; /** * @hidden */ export declare const SeriesHeaderCell: () => null;