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