import '@oicl/openbridge-webcomponents/dist/components/sequence-loading-spinner/sequence-loading-spinner.js'; import type { SequenceLoadingSpinnerType, SequenceLoadingSpinnerProgressionType } from '@oicl/openbridge-webcomponents/dist/components/sequence-loading-spinner/sequence-loading-spinner.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; type?: SequenceLoadingSpinnerType; progression?: SequenceLoadingSpinnerProgressionType; rotationDurationMs?: number; progressPercent?: number; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcSequenceLoadingSpinner: import("svelte").Component<$$ComponentProps, { SequenceLoadingSpinnerType: typeof SequenceLoadingSpinnerType; SequenceLoadingSpinnerProgressionType: typeof SequenceLoadingSpinnerProgressionType; }, "">; type ObcSequenceLoadingSpinner = ReturnType; export default ObcSequenceLoadingSpinner;