import { Player, Position, Vehicle } from "@sa-mp/core"; import { Dynamic3DTextLabel } from "."; import { DynamicArea } from ".."; export interface Dynamic3DTextLabelExOptions extends Position { text: string; color: number; drawDistance: number; attachedPlayer?: Player; attachedVehicle?: Vehicle; testLOS?: boolean; streamDistance?: number; worlds?: number[]; interiors?: number[]; players?: Player[]; areas?: DynamicArea[]; priority?: number; } export declare class Dynamic3DTextLabelEx extends Dynamic3DTextLabel { readonly options: Dynamic3DTextLabelExOptions; static create(options: Dynamic3DTextLabelExOptions): Dynamic3DTextLabelEx; constructor(options: Dynamic3DTextLabelExOptions); create(): Dynamic3DTextLabelEx; }