import type { DOMRenderProps } from "../../utils/dom"; import type { ReactNode } from "react"; import React from "react"; interface FieldsetRootProps extends DOMRenderProps { children?: ReactNode; className?: string; } declare const FieldsetRoot: ({ className, ...props }: FieldsetRootProps & Omit>) => import("react/jsx-runtime").JSX.Element; interface FieldsetLegendProps extends DOMRenderProps { children?: ReactNode; className?: string; } declare const FieldsetLegend: ({ className, ...props }: FieldsetLegendProps & Omit>) => import("react/jsx-runtime").JSX.Element; interface FieldGroupProps extends DOMRenderProps { children?: ReactNode; className?: string; } declare const FieldGroup: ({ className, ...rest }: FieldGroupProps & Omit>) => import("react/jsx-runtime").JSX.Element; interface FieldsetActionsProps extends DOMRenderProps { children?: ReactNode; className?: string; } declare const FieldsetActions: ({ children, className, ...rest }: FieldsetActionsProps & Omit>) => import("react/jsx-runtime").JSX.Element; export { FieldsetRoot, FieldsetLegend, FieldGroup, FieldsetActions }; export type { FieldsetRootProps, FieldsetLegendProps, FieldGroupProps, FieldsetActionsProps };