import { Player, Position } from "@sa-mp/core"; import { DynamicArea } from "./area"; export interface DynamicCuboidOptions { min: Position; max: Position; world?: number; interior?: number; player?: Player; priority?: number; } export declare class DynamicCuboid extends DynamicArea { readonly options: DynamicCuboidOptions; static create(options: DynamicCuboidOptions): DynamicCuboid; constructor(options: DynamicCuboidOptions); create(): DynamicCuboid; }