import * as React from "react"; import type { Checked } from "../util/types"; /** * The internal stateless ☑️ Checkbox */ declare const CheckboxCore: React.ForwardRefExoticComponent & Readonly<{ role?: import("@khanacademy/wonder-blocks-core").AriaRole; }> & { checked: Checked; disabled: boolean; error: boolean; groupName?: string; id?: string; testId?: string; onClick: () => void; } & React.RefAttributes>; export default CheckboxCore;