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