import * as React from "react"; import { CommonStyleProps } from "./system/unions"; export declare type AspectRatioProps = CommonStyleProps & React.HTMLAttributes & { aspectRatio: number; }; export declare const AspectRatio: { ({ aspectRatio, children, }: AspectRatioProps): JSX.Element; displayName: string; };