import '@oicl/openbridge-webcomponents/dist/components/sequence-card/sequence-card.js'; import type { ObcSequenceCardSize, ObcSequenceCardTitleType, ObcSequenceCardProgressType, ObcSequenceCardState } from '@oicl/openbridge-webcomponents/dist/components/sequence-card/sequence-card.js'; import type { SequenceValue, SequenceType, SequenceStyle } from '@oicl/openbridge-webcomponents/dist/components/sequence-step/sequence-step.js'; import type { Snippet } from 'svelte'; export interface Props { class?: string; style?: string; size?: ObcSequenceCardSize; titleType?: ObcSequenceCardTitleType; progressType?: ObcSequenceCardProgressType; state?: ObcSequenceCardState; fullWidth?: boolean; fullHeight?: boolean; horizontal?: boolean; showConnector?: boolean; hasLeadingIcon?: boolean; cardTitle?: string; subtitle?: string; hasTimeStamp?: boolean; timeLabel?: string; time?: string; hasContent?: boolean; hasActions?: boolean; progressLabel?: string; progressValue?: SequenceValue; leftTime?: string; indicatorTypeOverride?: SequenceType | undefined; indicatorStyleOverride?: SequenceStyle | undefined; } export interface Events { } export interface Slots { children?: Snippet; } type $$ComponentProps = Props & Events & Slots; declare const ObcSequenceCard: import("svelte").Component<$$ComponentProps, { ObcSequenceCardSize: typeof ObcSequenceCardSize; ObcSequenceCardTitleType: typeof ObcSequenceCardTitleType; ObcSequenceCardProgressType: typeof ObcSequenceCardProgressType; ObcSequenceCardState: typeof ObcSequenceCardState; SequenceValue: typeof SequenceValue; SequenceType: typeof SequenceType; SequenceStyle: typeof SequenceStyle; }, "">; type ObcSequenceCard = ReturnType; export default ObcSequenceCard;