/** * [WHO]: AspectRatio — keep content at a fixed aspect ratio via @radix-ui/react-aspect-ratio. * [FROM]: @radix-ui/react-aspect-ratio. * [TO]: sparkdesign package consumers; output of CLI `add aspect-ratio` when registered. * [HERE]: registry/basic/aspect-ratio.tsx — Spark Design source; keep aligned with the main library. * * [PROTOCOL]: * 1. Keep this P3 header in sync when the public contract changes. * 2. Update module AGENTS.md (P2) and root AGENTS.md (P1) when boundaries change. * 3. Follow design tokens and explicit type exports. */ import type * as React from 'react'; import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio'; declare const AspectRatio: React.ForwardRefExoticComponent>; export type AspectRatioProps = React.ComponentPropsWithoutRef; export { AspectRatio };