import { BoxProps } from "@mui/system";
export type AspectRatioContainerProps = BoxProps & {
    ratio: [number, number];
};
export declare const AspectRatioContainer: import("react").ForwardRefExoticComponent<Omit<AspectRatioContainerProps, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
