/**
 *
 * @param {Vector3} [position]
 * @param {number} [timeout]
 * @param {String} [url]
 * @param {SoundTrack} [track]
 * @param {boolean} [positioned]
 * @param {String|SoundEmitterChannels} [channel]
 * @param {number} [volume]
 * @returns {Entity}
 */
export function createSound({ position, timeout, url, track, positioned, channel, volume }?: Vector3): Entity;
/**
 *
 * @param timeout
 * @param action
 * @returns {Entity}
 */
export function createTimer({ timeout, action }: {
    timeout: any;
    action: any;
}): Entity;
import Vector3 from "../core/geom/Vector3.js";
import Entity from './ecs/Entity.js';
//# sourceMappingURL=EntityCreator.d.ts.map