import type { Snippet } from 'svelte'; type Orientation = 'horizontal' | 'vertical'; interface CompareSliderProps { beforeSrc?: string; afterSrc?: string; beforeAlt?: string; afterAlt?: string; beforeLabel?: string; afterLabel?: string; value?: number; orientation?: Orientation; before?: Snippet; after?: Snippet; class?: string; } declare const CompareSlider: import("svelte").Component; type CompareSlider = ReturnType; export default CompareSlider;