import * as React from 'react';
import type { GridSlotProps } from '@mui/x-data-grid-pro';
export type GridChartsPanelDataSearchProps = Pick<GridSlotProps['baseTextField'], 'value' | 'onChange'> & {
  onClear: () => void;
};
declare function GridChartsPanelDataSearch(props: GridChartsPanelDataSearchProps): React.JSX.Element;
export { GridChartsPanelDataSearch };