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