import type { ComponentProps } from "react";
import { FormRoot } from "./form";
export declare const Form: (({ ...props }: import("./form").FormRootProps) => import("react/jsx-runtime").JSX.Element) & {
    Root: ({ ...props }: import("./form").FormRootProps) => import("react/jsx-runtime").JSX.Element;
};
export type Form = {
    Props: ComponentProps<typeof FormRoot>;
    RootProps: ComponentProps<typeof FormRoot>;
};
export { FormRoot };
export type { FormRootProps, FormRootProps as FormProps } from "./form";
