import { ISendLocationOptions, MediaSendTypes } from '../../types'; import { Media } from './Media'; export declare class Location extends Media { readonly latitude: number; readonly longitude: number; readonly options: ISendLocationOptions; type: MediaSendTypes; /** * Send location * @param latitude Latitude of the location * @param longitude Longitude of the location * @param options Message options {@link ISendLocationOptions} * @see https://core.telegram.org/bots/api#sendlocation * */ constructor(latitude: number, longitude: number, options?: ISendLocationOptions); }