export type SnapIndicatorSize = 'sm' | 'md' | 'lg'; export type SnapIndicatorVariant = 'dots' | 'pills' | 'bars'; interface SnapIndicatorProps { count: number; active?: number; size?: SnapIndicatorSize; /** dots = round scale · pills = active elongates · bars = equal segments */ variant?: SnapIndicatorVariant; class?: string; onselect?: (index: number) => void; } declare const SnapIndicator: import("svelte").Component; type SnapIndicator = ReturnType; export default SnapIndicator;