///
import { type FormHelperTextProps as MuiFormHelperTextProps } from '@mui/material';
import { type WithoutEmotionSpecific } from '../types';
export type FormHelperTextProps = WithoutEmotionSpecific & {
success?: boolean;
error?: boolean;
};
export declare const FormHelperText: ({ children, success, error, ...props }: FormHelperTextProps) => JSX.Element;