import type { Snippet } from 'svelte'; interface AspectRatioProps { /** e.g. 1.777 for 16:9, 1 for square */ ratio?: number; class?: string; children?: Snippet; } declare const AspectRatio: import("svelte").Component; type AspectRatio = ReturnType; export default AspectRatio;