import type { Snippet } from 'svelte'; interface FigureProps { src: string; alt: string; caption?: string; rounded?: boolean; class?: string; children?: Snippet; } declare const Figure: import("svelte").Component; type Figure = ReturnType; export default Figure;