/// <reference types="react" />
export type ICheckType = Omit<React.InputHTMLAttributes<HTMLInputElement>, "size"> & {
    size?: "small" | "default";
    label?: string;
    messege?: string;
    disabled?: boolean;
    loading?: boolean;
    checked?: boolean;
    onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
};
export declare const Toogle: (props: ICheckType) => import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=index.d.ts.map