import { TypeColumn } from '../../types.js'; export type DataGridSearchBarChange = { commit: boolean; immediate: boolean; }; export type DataGridSearchBarProps = { ariaLabel?: string; autoFocus?: boolean; clearLabel?: string; columns: readonly TypeColumn[]; placeholder?: string; standalone?: boolean; theme?: string; value: string; onValueChange: (value: string, change: DataGridSearchBarChange) => void; }; export declare function DataGridSearchBar(props: DataGridSearchBarProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=DataGridSearchBar.d.ts.map