import { OptionLoader } from "../../../Utils/OptionsUtils.js";
import type { IFullScreen } from "../../Interfaces/FullScreen/IFullScreen.js";
import type { RecursivePartial } from "../../../Types/RecursivePartial.js";
export declare class FullScreen extends OptionLoader<IFullScreen> implements IFullScreen {
    enable: boolean;
    zIndex: number;
    protected doLoad(data: RecursivePartial<IFullScreen>): void;
}
