import React from "react"; import { RadioProps } from "../Primitives"; export interface RadioFieldProps extends Omit { id?: string; labelText: string | React.ReactNode; selectedStatus?: boolean; inline?: boolean; disabled?: 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 RadioField: { ({ id: propsId, labelText, selectedStatus, inline, disabled, reversed, automationId, classNameOverride, ...restProps }: RadioFieldProps): JSX.Element; displayName: string; };