///
import PropTypes from 'prop-types';
import { TextFieldProps } from '@mui/material/TextField';
import { InputProps } from '../../features/core';
export declare type NullableBooleanInputProps = InputProps & Omit & {
nullLabel?: string;
falseLabel?: string;
trueLabel?: string;
};
declare const NullableBooleanInput: {
(props: NullableBooleanInputProps): JSX.Element;
propTypes: {
label: PropTypes.Requireable;
options: PropTypes.Requireable