import * as React from "react"; import { CompositeOptions, CompositeHTMLProps } from "../Composite/Composite"; export declare type RadioGroupOptions = CompositeOptions; export declare type RadioGroupHTMLProps = CompositeHTMLProps & React.FieldsetHTMLAttributes; export declare type RadioGroupProps = RadioGroupOptions & RadioGroupHTMLProps; export declare const useRadioGroup: { (options?: CompositeOptions | undefined, htmlProps?: RadioGroupHTMLProps | undefined, unstable_ignoreUseOptions?: boolean | undefined): RadioGroupHTMLProps; unstable_propsAreEqual: (prev: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & Pick, "wrap" | "orientation" | "baseId" | "currentId" | "unstable_virtual" | "groups" | "unstable_moves"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.FieldsetHTMLAttributes, next: import("..").RoleOptions & { disabled?: boolean | undefined; focusable?: boolean | undefined; } & Pick, "wrap" | "orientation" | "baseId" | "currentId" | "unstable_virtual" | "groups" | "unstable_moves"> & Pick & React.HTMLAttributes & React.RefAttributes & { wrapElement?: ((element: React.ReactNode) => React.ReactNode) | undefined; } & { disabled?: boolean | undefined; } & React.FieldsetHTMLAttributes) => boolean; __keys: readonly any[]; __useOptions: (options: CompositeOptions, htmlProps: RadioGroupHTMLProps) => CompositeOptions; }; export declare const RadioGroup: import("reakit-system/ts/createComponent").Component<"div", CompositeOptions>;