import React from 'react'; import { BoxSystemProps } from './Box'; declare type AspectRatioDOMProps = React.ComponentPropsWithRef<'div'>; declare type AspectRatioSystemProps = BoxSystemProps; declare type AspectRatioOwnProps = { ratio?: string; }; export declare type AspectRatioProps = AspectRatioDOMProps & AspectRatioSystemProps & AspectRatioOwnProps & { as?: React.ElementType; }; export declare const AspectRatio: React.ForwardRefExoticComponent & React.RefAttributes>; export {};