import type { Snippet } from 'svelte'; type Props = { /** Width-to-height aspect ratio (e.g. 16/9). Also settable via the CSS custom property. */ ratio?: number | undefined; children?: Snippet; }; /** * A container that maintains a fixed aspect ratio, placing children in an absolutely-positioned inner element. * * ### CSS Custom Properties * | Property | Description | Default | * |---|---|---| * | `--sc-kit--proportional-container--ratio` | Aspect ratio (width / height) | `1` | * | `--sc-kit--proportional-container--height` | Container height | `auto` | * | `--sc-kit--proportional-container--width` | Container width | `100%` | */ declare const Cmp: import("svelte").Component; type Cmp = ReturnType; export default Cmp;