import { Media } from './Media'; import { ISendContactOptions, MediaSendTypes } from '../../types'; export declare class Contact extends Media { readonly phone: string; readonly firstName: string; readonly lastName: string | null; readonly options: ISendContactOptions; type: MediaSendTypes; /** * Send contact * @param phone Contact phone * @param firstName Contact first name * @param lastName Contact last name (optional) * @param options Message options {@link ISendContactOptions} * @see https://core.telegram.org/bots/api#sendcontact * */ constructor(phone: string, firstName: string, lastName?: string | null, options?: ISendContactOptions); }