import { Player, Position } from "@sa-mp/core"; import { DynamicSphere } from "."; export interface DynamicSphereExOptions extends Position { size: number; worlds?: number[]; interiors?: number[]; players?: Player[]; priority?: number; } export declare class DynamicSphereEx extends DynamicSphere { readonly options: DynamicSphereExOptions; static create(options: DynamicSphereExOptions): DynamicSphereEx; constructor(options: DynamicSphereExOptions); create(): DynamicSphereEx; }