import type { ClientMessage } from "../types"; /** * Location API component * * @group Location */ export default class Location implements ClientMessage { /** * The latitude of the location */ longitude: number; /** * The longitude of the location */ latitude: number; /** * The name of the location */ name?: string; /** * The address of the location */ address?: string; get _type(): "location"; /** * Create a Location object for the API * * @param longitude - Longitude of the location * @param latitude - Latitude of the location * @param name - Name of the location * @param address - Address of the location, only displayed if name is present */ constructor(longitude: number, latitude: number, name?: string, address?: string); _build(): string; } //# sourceMappingURL=location.d.ts.map