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