import type { Snippet } from 'svelte'; import type { ContainerWidth, LottieForegroundPosition } from '../@types/global'; interface ForegroundProps { id?: string; class?: string; startFrame?: number; endFrame?: number; children?: Snippet; backgroundColour?: string; width?: ContainerWidth; position?: LottieForegroundPosition | string; text?: string; } /** A caption or custom overlay shown over a parent Lottie between set frames. Must be used inside Lottie. */ declare const LottieForeground: import("svelte").Component; type LottieForeground = ReturnType; export default LottieForeground;