/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { SVGIcon } from '@progress/kendo-svg-icons';
export interface GridToolbarGroupProps {
    /**
     * Defines the icon rendered in the GridToolbarGroup tool ([see example](https://www.telerik.com/kendo-react-ui/components/common/icon)).
     *
     * @example
     * ```jsx
     * <GridToolbarGroup icon="home" />
     * ```
     */
    icon?: string;
    /**
     * Defines the SVG icon rendered in the GridToolbarGroup tool ([see example](https://www.telerik.com/kendo-react-ui/components/common/svgicon)).
     *
     * @example
     * ```jsx
     * import { gearIcon } from '@progress/kendo-svg-icons';
     *
     * <GridToolbarGroup svgIcon={gearIcon} />
     * ```
     */
    svgIcon?: SVGIcon;
    /**
     * Specifies if the popup will be displayed.
     *
     * @example
     * ```jsx
     * <GridToolbarGroup show={true} />
     * ```
     */
    show?: boolean;
    /**
     * The method that will be called to close the column menu.
     *
     * @example
     * ```jsx
     * <GridToolbarGroup onCloseMenu={() => console.log('close menu');} />
     * ```
     */
    onCloseMenu?: Function;
}
/**
 * Represents the GridToolbarGroup component.
 */
export declare const GridToolbarGroup: {
    (props: GridToolbarGroupProps): any;
    displayName: string;
};
