import * as React from "react";
export interface Props {
    /**
     * The content of the component.
     */
    children?: React.ReactNode;
    /**
     * The ratio which needs to be preserved.
     */
    ratio: number;
}
declare const PreserveAspectRatio: (props: Props) => JSX.Element;
export default PreserveAspectRatio;
