import * as React from 'react'; import { type ComponentsOverrides } from '@mui/material/styles'; import type { CommonInputProps } from './CommonInputProps'; import { type TextInputProps } from './TextInput'; export declare const SearchInput: (inProps: SearchInputProps) => React.JSX.Element; export type SearchInputProps = CommonInputProps & TextInputProps; declare module '@mui/material/styles' { interface ComponentNameToClassKey { RaSearchInput: 'root'; } interface ComponentsPropsList { RaSearchInput: Partial; } interface Components { RaSearchInput?: { defaultProps?: ComponentsPropsList['RaSearchInput']; styleOverrides?: ComponentsOverrides>['RaSearchInput']; }; } } //# sourceMappingURL=SearchInput.d.ts.map