import { StackProps } from '@mui/material'; import { PropsWithChildren } from 'react'; type FormErrorTextProps = StackProps & PropsWithChildren & { className?: string; }; export declare const FormErrorText: ({ children, className, sx, ...stackProps }: FormErrorTextProps) => import("@emotion/react/jsx-runtime").JSX.Element; export {};