import type { Snippet } from 'svelte'; import type { ClassValue } from 'svelte/elements'; type SlideProps = { children?: Snippet; in?: () => void; out?: () => void; animate?: boolean; animateEasing?: string; animateUnmatched?: boolean; animateId?: string; animateRestart?: boolean; stepDuration?: number; background?: string; gradient?: string; image?: string; video?: string; iframe?: string; interactive?: boolean; transition?: 'none' | 'fade' | 'slide' | 'convex' | 'concave' | 'zoom'; class?: ClassValue; }; declare const Slide: import("svelte").Component; type Slide = ReturnType; export default Slide;