import { ScriptProperty } from '../ScriptProperty.js';
/**
 * A ScriptProperty for specifying whether an entity has a shadow or not
 *
 * @extends ScriptProperty
 * @see https://wiki.arx-libertatis.org/Script:setshadow
 */
export declare class Shadow extends ScriptProperty<boolean> {
    toString(): string;
    static get on(): Shadow;
    static get off(): Shadow;
}
