import * as React from "react"; import { RadioGroup as RadioGroupPrimitive } from "radix-ui"; /** * RadioItem */ interface RadioProps extends React.ComponentPropsWithoutRef { label: string | React.ReactNode; id: string; } declare const Radio: (({ className, label, id, ...props }: RadioProps) => React.JSX.Element) & { original: ({ className, label, id, ...props }: RadioProps) => React.JSX.Element; originalName: string; displayName: string; } & { original: (({ className, label, id, ...props }: RadioProps) => React.JSX.Element) & { original: ({ className, label, id, ...props }: RadioProps) => React.JSX.Element; originalName: string; displayName: string; }; originalName: string; displayName: string; } & { createDecorator: (decorator: import("@webiny/react-composition/types").ComponentDecorator<(({ className, label, id, ...props }: RadioProps) => React.JSX.Element) & { original: ({ className, label, id, ...props }: RadioProps) => React.JSX.Element; originalName: string; displayName: string; }>) => (props: unknown) => React.JSX.Element; }; export { Radio, type RadioProps };