import { InputHTMLAttributes } from "react"; import { OverrideClassName } from "@kaizen/component-base"; export interface RadioProps extends OverrideClassName, "type" | "checked">> { id: string; name: string; value: string; selectedStatus?: boolean; reversed?: boolean; /** * **Deprecated:** Use test id compatible with your testing library (eg. `data-testid`). * @deprecated */ automationId?: string; } /** * @deprecated Please use the same component from `@kaizen/components` */ export declare const Radio: { ({ name, value, selectedStatus, reversed, automationId, onChange, classNameOverride, ...restProps }: RadioProps): JSX.Element; displayName: string; };