import type * as React from 'react'; import type { BlockProps } from '../block'; export type AspectRatioBoxProps = { /** Aspect ratio is width divided by height. */ readonly aspectRatio?: number; } & BlockProps;