/** * AspectRatio - constrains its content to a fixed width/height ratio. Pure-visual * CSS primitive (no engine needed): sets the `aspect-ratio` on a single node and * lets the child fill it. Handy for media, embeds, and skeleton placeholders. * * @module react/components/ui/aspect-ratio */ import * as React from "react"; /** Props accepted by ``. */ export interface AspectRatioProps extends React.HTMLAttributes { /** Width รท height (e.g. `16 / 9`, `1`, `4 / 3`). @default 1 */ ratio?: number; /** React 19: ref is a regular prop. */ ref?: React.Ref; } /** Constrain content to a fixed aspect ratio. */ export declare function AspectRatio({ className, ratio, style, ref, ...props }: AspectRatioProps): React.ReactElement; //# sourceMappingURL=aspect-ratio.d.ts.map