UNPKG

@openhands/ui

Version:
9 lines (8 loc) 421 B
import { BaseProps, HTMLProps } from '../../shared/types'; type RadioOptionProps = Omit<HTMLProps<"input">, "id" | "checked"> & { label: React.ReactNode; labelClassName?: string; id: string; } & BaseProps; export declare const RadioOption: ({ className, label, labelClassName, value, id: propId, disabled, onChange, testId, ...props }: RadioOptionProps) => import("react/jsx-runtime").JSX.Element; export {};