import { Player, Position2D } from "@sa-mp/core"; import { DynamicCylinder } from "."; export interface DynamicCylinderExOptions extends Position2D { z: { min: number; max: number; }; size: number; worlds?: number[]; interiors?: number[]; players?: Player[]; priority?: number; } export declare class DynamicCylinderEx extends DynamicCylinder { readonly options: DynamicCylinderExOptions; static create(options: DynamicCylinderExOptions): DynamicCylinderEx; constructor(options: DynamicCylinderExOptions); create(): DynamicCylinderEx; }