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