import { type CSSProperties, type ReactNode } from 'react';
type IAutoScale = boolean | {
    x?: boolean;
    y?: boolean;
};
interface Options {
    children?: ReactNode;
    autoScale?: IAutoScale;
    fullScreen?: boolean;
    width: number | string;
    height: number | string;
    bodyOverflowHidden?: boolean;
    delay?: number;
    boxStyle?: CSSProperties;
    wrapperStyle?: CSSProperties;
}
export default function RScaleScreen(props: Options): JSX.Element;
export {};
