import * as React from 'react'; import { type StyledBlockProps } from '../block'; import type { AspectRatioBoxProps } from './types'; interface AspectRatioCoxComponentType { (props: AspectRatioBoxProps & (React.ComponentProps extends { ref?: infer R; } ? { ref?: R; } : {}) & Omit, keyof AspectRatioBoxProps>): JSX.Element; displayName?: string; } declare const AspectRatioBoxComponent: AspectRatioCoxComponentType<"div">; export default AspectRatioBoxComponent;