import { default as React } from 'react'; import { UnSafeCheckBoxFieldProps } from '../checkBoxField/UnSafeCheckBoxField'; import { DisableMode } from '../common/common'; /** * Component & its Props */ export interface Props { checkBoxField: UnSafeCheckBoxFieldProps; label: { label: string | React.ReactNode; /** Backend field-help code; shows the label's info tooltip when copy exists. */ fieldCode?: string; style?: React.CSSProperties; width?: number; }; isDisabled?: DisableMode; style?: React.CSSProperties; } /** * @deprecated Use Labeled Controlled UnSafeCheckBoxField from nowonwards */ export declare function LabeledUnSafeCheckBoxField({ isDisabled, label, checkBoxField, style, }: Readonly): import("react/jsx-runtime").JSX.Element;