import { Constructor } from '../../../../../types/GlobalTypes';
import { RootManagerNode } from '../../Root';
export declare function SceneAutoUpdateParamConfig<TBase extends Constructor>(Base: TBase): {
    new (...args: any[]): {
        /** @param autoUpdate */
        autoUpdate: import("../../../utils/params/ParamsConfig").ParamTemplate<import("../../../../index_all").ParamType.BOOLEAN>;
    };
} & TBase;
export declare class SceneAutoUpdateController {
    protected node: RootManagerNode;
    constructor(node: RootManagerNode);
    update(): Promise<void>;
    static update(node: RootManagerNode): Promise<void>;
}
