import { AbstractGroupInputProps } from "../../input"; import { OmitInternalProps } from "../../shared"; import { ComponentProps } from "react"; declare const DefaultElement = "div"; export interface InnerRadioGroupProps extends AbstractGroupInputProps { /** * Radio group name. */ name?: string; } export declare function InnerRadioGroup(props: InnerRadioGroupProps): JSX.Element; export declare namespace InnerRadioGroup { var defaultElement: string; } /** * A radio group is a set of checkable buttons, known as radio buttons, where no more than one of the buttons can be checked at a time. * * [Documentation](https://orbit.sharegate.design/?path=/docs/radio-group--default-story) */ export declare const RadioGroup: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type RadioGroupProps = ComponentProps; export {};