/**
 * Returns false when viewing the scene in the editor, and true otherwise.
 *
 *
 */
import { TypedJsNode } from './_Base';
import { NodeParamsConfig } from '../utils/params/ParamsConfig';
import { JsLinesCollectionController } from './code/utils/JsLinesCollectionController';
declare class PlayerModeJsParamsConfig extends NodeParamsConfig {
}
export declare class PlayerModeJsNode extends TypedJsNode<PlayerModeJsParamsConfig> {
    paramsConfig: PlayerModeJsParamsConfig;
    static type(): string;
    static readonly OUTPUT_NAME = "mode";
    initializeNode(): void;
    setLines(linesController: JsLinesCollectionController): void;
}
export {};
