import { ScriptProperty } from '../ScriptProperty.js';
/**
 * A ScriptProperty for specifying whether an Entity can be collided with or can be passed through.
 *
 * @extends ScriptProperty
 * @see https://wiki.arx-libertatis.org/Script:collision
 */
export declare class Collision extends ScriptProperty<boolean> {
    toString(): string;
    static get on(): Collision;
    static get off(): Collision;
}
