import * as React from "react"; /** * Props for the {@link AspectRatio} component. */ export interface AspectRatioProps extends React.HTMLAttributes { /** Aspect ratio applied to the wrapper element. @default 1 */ ratio?: number | string; } /** * Preserves a predictable width-to-height ratio for arbitrary content. * * @remarks * - Pure CSS component (no Base UI primitive) * - Renders a `
` element * - Styling via CSS Modules with `--ac-*` custom properties * * @example * ```tsx * Media * ``` * * @see {@link AspectRatioProps} for available props */ declare const AspectRatio: React.ForwardRefExoticComponent>; export { AspectRatio }; //# sourceMappingURL=aspect-ratio.d.ts.map