import '@oicl/openbridge-webcomponents/dist/components/toggle-button-three-state/toggle-button-three-state.js'; import type { ObcToggleButtonThreeStateChangeEvent, ObcToggleButtonThreeStateValue } from '@oicl/openbridge-webcomponents/dist/components/toggle-button-three-state/toggle-button-three-state.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; /** Current state of the toggle. */ state?: ObcToggleButtonThreeStateValue; /** Disables interaction when true. */ disabled?: boolean; } export interface Events { onChange?: (event: ObcToggleButtonThreeStateChangeEvent) => void; } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcToggleButtonThreeState: import("svelte").Component<$$ComponentProps, { ObcToggleButtonThreeStateChangeEvent: typeof ObcToggleButtonThreeStateChangeEvent; ObcToggleButtonThreeStateValue: typeof ObcToggleButtonThreeStateValue; }, "">; type ObcToggleButtonThreeState = ReturnType; export default ObcToggleButtonThreeState;