type checkedType = boolean | string | undefined;
interface ICheckbox {
    checked?: checkedType;
    onChange?: (check: checkedType) => void;
    disabled?: boolean;
    error?: boolean;
    indeterminate?: boolean;
    withBounceEffect?: boolean;
    label: string;
}
export declare const Checkbox: ({ checked, onChange, disabled, error, indeterminate, label, withBounceEffect, }: ICheckbox) => import("react/jsx-runtime").JSX.Element;
export {};
