import { InlineQueryResultContact } from '../types'; import { InlineKeyboardMarkup, InputMessageContent } from '../types'; export declare class InlineQueryResultContactBase implements InlineQueryResultContact { type: string; id: string; phone_number: string; first_name: string; last_name: string; vcard: string; reply_markup: InlineKeyboardMarkup; input_message_content: InputMessageContent; thumbnail_url: string; thumbnail_width: number; thumbnail_height: number; }