/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { GridColumnMenuGroupBaseProps } from '../interfaces/GridColumnMenuGroupBaseProps'; import * as React from 'react'; /** * The props of the GridColumnMenuGroup component. */ export interface GridColumnMenuGroupProps extends GridColumnMenuGroupBaseProps { } /** * @example * ```jsx-no-run * const TextColumnMenu = (props) => { * return ( *
* * *
* ); * }; * * const initialState = { * take: 10, * skip: 0 * }; * * const App = () => { * const [dataState, setDataState] = useState(initialState); * const [result, setResult] = useState(process(products.slice(0), initialState)); * * const dataStateChange = (event) => { * setDataState(event.dataState); * setResult(process(products.slice(0), event.dataState)); * } * * return ( *
* * * * *
*
* ); * }; * * export default App; * ``` */ export declare const GridColumnMenuGroup: (props: GridColumnMenuGroupProps) => React.JSX.Element;