import type { HTMLAttributes, Ref } from "react"; export interface AspectRatioProps extends HTMLAttributes { /** Width/height ratio, e.g. 16/10 or 4/5. */ ratio: number; /** Forwarded ref to the frame element. */ ref?: Ref; } /** Fixed-aspect-ratio box that sizes its child media. */ export declare function AspectRatio({ ratio, className, style, children, ref, ...rest }: AspectRatioProps): import("react").JSX.Element; //# sourceMappingURL=AspectRatio.d.ts.map