import * as React from 'react'; import { SearchInput } from '../search-input/SearchInput'; type DataTableSearchProps = React.ComponentProps & { label: string; hideLabel?: boolean; }; export declare const DataTableGlobalFilter: ({ onChange, label, hideLabel, ...props }: DataTableSearchProps) => React.JSX.Element | null; export {};