import type React from 'react';
import type { PropsWithChildren } from 'react';
import { FormHelperTextProps } from '@mui/material';
interface InputHelperTextProps extends FormHelperTextProps {
    onClick?: React.MouseEventHandler<HTMLParagraphElement>;
}
declare const InputHelperText: React.FC<PropsWithChildren<InputHelperTextProps>>;
export default InputHelperText;
//# sourceMappingURL=input-helper-text.d.ts.map