import { default as React } from 'react'; import { ReactFragment } from '../../../types/common'; import { ControlledCheckBoxFieldProps } from '../checkBoxField/ControlledCheckBoxField'; /** * Component & its Props */ export interface Props { checkBoxField: ControlledCheckBoxFieldProps; 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; }; style?: React.CSSProperties; tooltipProps?: { text: string | ReactFragment; arrow?: boolean; maxWidth?: string; }; } export declare function LabeledControlledCheckBoxField({ label, checkBoxField, style, }: Readonly): import("react/jsx-runtime").JSX.Element;