import type { Vector2Like } from "../../core/miscellaneous/math"; import type { UIVector2Config } from "../miscellaneous/miscellaneous"; import { UISpawnModule } from "./UISpawnModule"; /** * Sets particle spawn position offset. * * All particles spawned with this module start at the specified position. */ export declare class UISpawnOffset extends UISpawnModule<{ builtin: "Matrix4"; }> { private offsetInternal; /** * @param offset - Initial particle position offset */ constructor(offset?: UIVector2Config); /** Particle position offset */ get offset(): Vector2Like; /** Particle position offset */ set offset(value: UIVector2Config); }