import { ScriptProperty } from '../ScriptProperty.js';
/**
 * A ScriptProperty for specifying how fast an Entity can move.
 *
 * Affects all animations, not just movement.
 *
 * @extends ScriptProperty
 *
 * default value is 1
 */
export declare class Speed extends ScriptProperty<number> {
    toString(): string;
    static get default(): Speed;
}
