import type { Prop } from '../classes/Prop'; import { Vector3 } from '../types/Vector3'; import { IHandle } from '../types/IHandle'; import { int } from '../types/NativeAliases'; export declare class Pickup implements IHandle { handle: number; constructor(handle: number); static fromHandle(handle: number): Pickup | null; /** * @returns */ hasBeenCollected(): boolean; /** * @returns */ doesExist(): boolean; /** * @returns */ get Object(): Prop | null; /** * @param duration */ set RegenerationTime(duration: int); /** * @param duration * @returns The instance for method chaining */ setRegenerationTime(duration: int): this; /** * @returns */ get Coords(): Vector3; removePickup(): void; } //# sourceMappingURL=Pickup.d.ts.map