import React, { HTMLAttributes } from "react"; import { OverrideClassName } from "@kaizen/component-base"; export interface RadioGroupProps extends OverrideClassName> { children?: React.ReactNode; labelText: string | React.ReactNode; labelId?: string; noBottomMargin?: 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 RadioGroup: { ({ children, labelId: propsLabelId, labelText, noBottomMargin, reversed, automationId, classNameOverride, ...restProps }: RadioGroupProps): JSX.Element; displayName: string; };