/// <reference types="react" />
interface Props {
    text?: string;
    error: boolean;
    emitIsChecked?: (isChecked: boolean) => void;
    isChecked?: boolean;
    modalFontSize?: boolean;
    children?: React.ReactNode;
}
export type Ref = HTMLInputElement;
export declare const CheckBoxNew: import('react').ForwardRefExoticComponent<Props & import('react').RefAttributes<HTMLInputElement>>;
export {};
