import type { HTMLInputAttributes } from "svelte/elements";
declare module "@sjsf/form" {
interface UiOptions {
checkbox?: HTMLInputAttributes;
}
}
declare const Checkbox: import("svelte").Component, {}, "value">;
type Checkbox = ReturnType;
export default Checkbox;