/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { TextBoxChangeEvent, TextBoxProps } from '@progress/kendo-react-inputs';
import * as React from 'react';
/**
 * Represents the event object of the GridSearchBox `onChange` event.
 */
export interface GridSearchBoxChangeEvent extends TextBoxChangeEvent {
}
/**
 * Represents the props of the GridSearchBox component.
 */
export interface GridSearchBoxProps extends TextBoxProps {
    /**
     * Fires when the value of the search box is changed.
     */
    onChange?: (event: GridSearchBoxChangeEvent) => void;
}
/**
 * Represents the properties of the KendoReact GridSearchBox component.
 */
export declare const GridSearchBox: (props: GridSearchBoxProps) => React.JSX.Element;
