import type { ErrorMessageVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
import type { TextProps } from "react-aria-components";
import { Text } from "react-aria-components";
interface ErrorMessageRootProps extends ComponentPropsWithRef<typeof Text>, TextProps, ErrorMessageVariants {
}
declare const ErrorMessageRoot: ({ children, className, ...rest }: ErrorMessageRootProps) => import("react/jsx-runtime").JSX.Element;
export { ErrorMessageRoot };
export type { ErrorMessageRootProps };
