import '@oicl/openbridge-webcomponents/dist/integration-systems/integration-tabs/integration-tabs.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; selected?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcIntegrationTabs: import("svelte").Component<$$ComponentProps, {}, "">; type ObcIntegrationTabs = ReturnType; export default ObcIntegrationTabs;