import { DisplayMode } from "../../common/DisplayMode"; 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 GroupCheckBox: $$__sveltets_2_IsomorphicComponent<{ disabled?: boolean; readonly?: boolean; style?: string; value: string | number; bitBase?: boolean; options: Array; keyField?: string; textField?: string; delimiter?: string; displayMode?: DisplayMode; item$style?: string; disabledOptions?: Array; hideOptions?: Array; variant?: "" | "plain" | "outlined" | "filled"; compact?: boolean; onchange?: OnChangeHandler; onfocus?: (() => void) | null; onblur?: (() => void) | null; setFocus?: () => void; }, { [evt: string]: CustomEvent; }, {}, { setFocus: () => void; }, string>; type GroupCheckBox = InstanceType; export default GroupCheckBox;