import { type RadioGroupRootProps } from "@ark-ui/react"; export interface JRadioGroupProps extends RadioGroupRootProps { children?: React.ReactNode; } declare function JRadioGroup({ children, ...props }: JRadioGroupProps): import("react/jsx-runtime").JSX.Element; export default JRadioGroup;