import * as React from 'react';
export interface GridPivotPanelHeaderProps {
  searchValue: string;
  onSearchValueChange: (value: string) => void;
}
declare function GridPivotPanelHeader(props: GridPivotPanelHeaderProps): React.JSX.Element;
export { GridPivotPanelHeader };