import { ScriptProperty } from '../ScriptProperty.js';
/**
 * A ScriptProperty for allowing the player to jump when standing on
 * this entity. This property also enables NPCs to walk on top of
 * the entity.
 *
 * @extends ScriptProperty
 * @see https://wiki.arx-libertatis.org/Script:setplatform
 */
export declare class Platform extends ScriptProperty<boolean> {
    toString(): string;
    static get on(): Platform;
    static get off(): Platform;
}
