import { BaseProps } from "../_utils/props.js"; import React from "react"; //#region src/aspect-ratio/types.d.ts interface AspectRatioProps extends BaseProps, React.ComponentPropsWithoutRef<'div'> { /** the width of the content */ width?: number | string; /** the aspect ratio of the content */ ratio?: number; } //#endregion export { AspectRatioProps }; //# sourceMappingURL=types.d.ts.map