/**
* SvAspectRatio - hold a fixed width:height ratio for its content (media,
* embeds, maps, skeletons) so it never causes layout shift. The child fills
* the box.
*
*
*/
import type { Snippet } from 'svelte';
type Props = {
/** Width / height ratio (e.g. `16 / 9`, `1`, `4 / 3`). */
ratio?: number;
children?: Snippet;
};
declare const SvAspectRatio: import("svelte").Component;
type SvAspectRatio = ReturnType;
export default SvAspectRatio;