import { PolymorphicComponent, CSS } from './_shared';
export declare type AspectRatioProps = {
/**
* The width:height ratio to render.
*
* @default 1
*
* @example
* ```
*
* ```
*/
ratio?: number;
/**
* A custom width.
*/
width?: CSS['width'];
};
/**
* `AspectRatio` renders content with a given width:height ratio. A common example would be the **HD** `16:9` ratio.
*
* @example
* ```jsx
* import { AspectRatio } from `@wp-g2/components`
*
* function Example() {
* return (
*
*
*
* );
* }
* ```
*/
export declare const AspectRatio: PolymorphicComponent<'div', AspectRatioProps>;