import * as React from 'react'; import { type ComponentsOverrides } from '@mui/material/styles'; import { type TextFieldProps } from '@mui/material'; import type { CommonInputProps } from './CommonInputProps'; export declare const NullableBooleanInput: (inProps: NullableBooleanInputProps) => React.JSX.Element; export declare const NullableBooleanInputClasses: { input: string; }; export type NullableBooleanInputProps = CommonInputProps & Omit & { nullLabel?: string; falseLabel?: string; trueLabel?: string; }; declare module '@mui/material/styles' { interface ComponentNameToClassKey { RaNullableBooleanInput: 'root' | 'input'; } interface ComponentsPropsList { RaNullableBooleanInput: Partial; } interface Components { RaNullableBooleanInput?: { defaultProps?: ComponentsPropsList['RaNullableBooleanInput']; styleOverrides?: ComponentsOverrides>['RaNullableBooleanInput']; }; } } //# sourceMappingURL=NullableBooleanInput.d.ts.map