import React from "react"; import { CheckboxProps, CheckedStatus } from "../Primitives"; export interface CheckboxFieldProps extends Omit { id?: string; labelText: string | React.ReactNode; checkedStatus?: CheckedStatus; disabled?: boolean; reversed?: boolean; noBottomMargin?: 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 CheckboxField: { ({ id: propsId, labelText, checkedStatus, disabled, reversed, noBottomMargin, automationId, classNameOverride, ...restProps }: CheckboxFieldProps): JSX.Element; displayName: string; };