import * as React from 'react';
import type { StyledBlockProps, BlockProps } from '../block';
interface AspectRatioBoxBodyComponentType<D extends React.ElementType> {
    <C extends React.ElementType = D>(props: BlockProps<C> & Omit<StyledBlockProps & React.ComponentProps<C>, keyof BlockProps>): JSX.Element;
    displayName?: string;
}
export declare const AspectRatioBoxBody: AspectRatioBoxBodyComponentType<"div">;
export default AspectRatioBoxBody;
