import type { FieldsetVariants } from "@heroui/styles";
import type { ComponentPropsWithRef } from "react";
interface FieldsetRootProps extends ComponentPropsWithRef<"fieldset">, FieldsetVariants {
}
declare const FieldsetRoot: ({ className, ...props }: FieldsetRootProps) => import("react/jsx-runtime").JSX.Element;
interface FieldsetLegendProps extends ComponentPropsWithRef<"legend"> {
}
declare const FieldsetLegend: ({ className, ...props }: FieldsetLegendProps) => import("react/jsx-runtime").JSX.Element;
interface FieldGroupProps extends ComponentPropsWithRef<"div"> {
}
declare const FieldGroup: ({ className, ...rest }: FieldGroupProps) => import("react/jsx-runtime").JSX.Element;
interface FieldsetActionsProps extends ComponentPropsWithRef<"div"> {
}
declare const FieldsetActions: ({ children, className, ...rest }: FieldsetActionsProps) => import("react/jsx-runtime").JSX.Element;
export { FieldsetRoot, FieldsetLegend, FieldGroup, FieldsetActions };
export type { FieldsetRootProps, FieldsetLegendProps, FieldGroupProps, FieldsetActionsProps };
