import '@oicl/openbridge-webcomponents/dist/components/sequence-step/sequence-step.js'; import type { SequenceOrientation, SequenceType, SequenceStyle, SequenceValue, SequenceVariant } from '@oicl/openbridge-webcomponents/dist/components/sequence-step/sequence-step.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; orientation?: SequenceOrientation; type?: SequenceType; styleType?: SequenceStyle; value?: SequenceValue; variant?: SequenceVariant | undefined; /** Displays the built-in state icon for medium/large regular steps. */ hasIcon?: boolean; showStepInputConnector?: boolean; showStepOutputConnector?: boolean; /** Extends the input connector to match the height/width of multi-line content. Applies only when `hasInputConnector` is true. */ inputConnectorExtended?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcSequenceStep: import("svelte").Component<$$ComponentProps, { SequenceOrientation: typeof SequenceOrientation; SequenceType: typeof SequenceType; SequenceStyle: typeof SequenceStyle; SequenceValue: typeof SequenceValue; SequenceVariant: typeof SequenceVariant; }, "">; type ObcSequenceStep = ReturnType; export default ObcSequenceStep;