import { RadioGroupProps as RadixRadioGroupProps } from "@radix-ui/react-radio-group"; import { RadioGroupItem } from "./RadioGroupItem"; export type RadioGroupProps = { label?: React.ReactNode; tooltip?: React.ReactNode; isTooltipDisabled?: boolean; } & RadixRadioGroupProps; export declare function RadioGroup({ label, tooltip, isTooltipDisabled, children, className, ...props }: RadioGroupProps): import("react").JSX.Element; export declare namespace RadioGroup { export { RadioGroupItem as Item }; } //# sourceMappingURL=RadioGroup.d.ts.map