import type { ContainerWidth, ScrollerStep } from '../../@types/global'; type EmbeddedLayout = 'fb' | 'bf'; interface Props { steps: ScrollerStep[]; embeddedLayout?: EmbeddedLayout; backgroundWidth?: ContainerWidth; } declare const Index: import("svelte").Component; type Index = ReturnType; export default Index;