import { ScriptProperty } from '../ScriptProperty.js';
/**
 * A ScriptProperty for specifying the size of an Entity.
 *
 * Value precision is only 2 decimals
 *
 * @extends ScriptProperty
 *
 * default value is 1
 */
export declare class Scale extends ScriptProperty<number> {
    toString(): string;
    static get default(): Scale;
}
