import React from 'react';
import { ICheckboxWithLabelControlled } from './types/checkboxWithLabel';
/**
 * @deprecated This component has been deprecated and will be removed in the next MAJOR release. Will include all this on the CheckBox component
 */
declare const CheckboxWithLabelControlled: <V extends string | unknown>(props: ICheckboxWithLabelControlled<V> & {
    ref?: React.ForwardedRef<HTMLDivElement> | undefined | null;
}) => JSX.Element;
export { CheckboxWithLabelControlled };
