import React from "react"; import * as S from "../styled-components"; import { ICheckBox } from "../styled-components"; interface ILabelCheckBox extends S.IMainCssType, ICheckBox { checked?: boolean; onChange?: (event: React.ChangeEvent) => void; label?: string; type?: "default" | "primary"; className?: string; height?: string | number; color?: string; backgroundColor?: string; } export declare const LabelCheckBox: React.FC; export {};