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