type $$ComponentProps = {
    checked: boolean;
    disabled?: boolean;
};
declare const Check: import("svelte").Component<$$ComponentProps, {}, "checked">;
type Check = ReturnType<typeof Check>;
export default Check;
