import type { OnChangeHandler } from "../common/OnChangeHandler"; 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<{ label?: string | null; readonly?: boolean; disabled?: boolean; value?: boolean; indeterminate?: boolean; style?: string; compact?: boolean; onclick?: ((event: MouseEvent) => void) | null; onchange?: OnChangeHandler; onfocus?: ((event: FocusEvent) => void) | null; onblur?: ((event: FocusEvent) => void) | null; autoFocus?: boolean; setFocus?: () => void; }, { [evt: string]: CustomEvent; }, {}, { setFocus: () => void; }, string>; type CheckBox = InstanceType; export default CheckBox;