interface $$__sveltets_2_IsomorphicComponent = any, Events extends Record = any, Slots extends Record = any, Exports = {}, Bindings = string> { new (options: import('svelte').ComponentConstructorOptions): import('svelte').SvelteComponent & { $$bindings?: Bindings; } & Exports; (internal: unknown, props: Props & { $$events?: Events; $$slots?: Slots; }): Exports & { $set?: any; $on?: any; }; z_$$bindings?: Bindings; } declare const Checkbox: $$__sveltets_2_IsomorphicComponent<{ /** Controls whether the checkbox is checked or not. */ checked?: boolean; /** Controls whether the checkbox is in an indeterminate state. */ indeterminate?: boolean; /** Sets the input element's native value attribute for usage in forms. */ value?: any; /** Controls whether the checkbox is intended for user interaction, and styles it accordingly. */ disabled?: boolean; /** Specifies a custom class name for the checkbox. */ class?: string; id?: any; /** Obtains a bound DOM reference to the checkbox's element. */ inputElement?: HTMLInputElement; /** Obtains a bound DOM reference to the checkbox's outer container element. */ containerElement?: HTMLLabelElement; size?: "md" | "lg"; circular?: boolean; required?: boolean; }, { change: Event; } & { [evt: string]: CustomEvent; }, {}, {}, string>; type Checkbox = InstanceType; export default Checkbox;