import { ReactNode, HTMLAttributes } from 'react';
export interface CheckboxContainerProps extends Omit<HTMLAttributes<HTMLDivElement>, 'onChange'> {
    hasError?: boolean;
    isDisabled?: boolean;
    value: string;
    children: ReactNode;
}
export declare const CheckboxContainer: import('react').ForwardRefExoticComponent<CheckboxContainerProps & import('react').RefAttributes<HTMLDivElement>>;
