import React from 'react'; import './AspectRatioBox.scss'; export declare const DEFAULT_PRODUCT_ASPECT_WIDTH = 128; export declare const DEFAULT_PRODUCT_ASPECT_HEIGHT = 205; export declare const DEFAULT_PRODUCT_ASPECT_RATIO: number; export type AspectRatioBoxProps = React.HTMLAttributes & { aspectWidth?: number; aspectHeight?: number; maxWidth?: number; maxHeight?: number; outlined?: boolean; }; export declare const AspectRatioBox: React.ForwardRefExoticComponent & { aspectWidth?: number; aspectHeight?: number; maxWidth?: number; maxHeight?: number; outlined?: boolean; } & React.RefAttributes>;