import * as React from 'react'; import type { RenderProp } from '@mui/x-internals/useComponentRenderer'; import type { GridSlotProps } from "../../models/index.mjs"; import type { QuickFilterState } from "./QuickFilterContext.mjs"; export type QuickFilterClearProps = Omit & { /** * A function to customize rendering of the component. */ render?: RenderProp; /** * Override or extend the styles applied to the component. */ className?: string | ((state: QuickFilterState) => string); }; /** * A button that resets the filter value. * It renders the `baseIconButton` slot. * * Demos: * * - [Quick Filter](https://mui.com/x/react-data-grid/components/quick-filter/) * * API: * * - [QuickFilterClear API](https://mui.com/x/api/data-grid/quick-filter-clear/) */ declare const QuickFilterClear: React.ForwardRefExoticComponent | React.ForwardRefExoticComponent & React.RefAttributes>; export { QuickFilterClear };