import '@oicl/openbridge-webcomponents/dist/components/sequence-item/sequence-item.js'; import type { SequenceItemOrientation, SequenceItemLabelType, SequenceItemState } from '@oicl/openbridge-webcomponents/dist/components/sequence-item/sequence-item.js'; import type { SequenceType, SequenceStyle, SequenceValue } from '@oicl/openbridge-webcomponents/dist/components/sequence-step/sequence-step.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; orientation?: SequenceItemOrientation; labelType?: SequenceItemLabelType; state?: SequenceItemState; title?: string; hasSubtitle?: boolean; subtitle?: string; hasDescription?: boolean; description?: string; /** Enables the meta stamp container. Without this, timestamp/distance values are ignored even if their booleans are true. */ hasStamp?: boolean; /** Shows a timestamp inside the stamp container when `hasStamp` is true. */ hasTimeStamp?: boolean; timeStamp?: string; /** Shows a distance stamp alongside the timestamp. Requires `hasStamp` to be true. */ hasDistanceStamp?: boolean; distanceStamp?: string; /** Optional text used inside the auto-generated step. Defaults to `title` when not provided. */ stepLabel?: string; stepType?: SequenceType; stepStyle?: SequenceStyle; stepValue?: SequenceValue | undefined; showStepInputConnector?: boolean; showStepOutputConnector?: boolean; stepHasIcon?: boolean; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcSequenceItem: import("svelte").Component<$$ComponentProps, { SequenceItemOrientation: typeof SequenceItemOrientation; SequenceItemLabelType: typeof SequenceItemLabelType; SequenceItemState: typeof SequenceItemState; SequenceType: typeof SequenceType; SequenceStyle: typeof SequenceStyle; SequenceValue: typeof SequenceValue; }, "">; type ObcSequenceItem = ReturnType; export default ObcSequenceItem;