import type { ComponentPropsWithRef } from "react";
import { Form as FormPrimitive } from "react-aria-components";
interface FormRootProps extends ComponentPropsWithRef<typeof FormPrimitive> {
}
declare const FormRoot: ({ ...props }: FormRootProps) => import("react/jsx-runtime").JSX.Element;
export { FormRoot };
export type { FormRootProps };
