import { Contact, PhotoSize } from '@airgram-dev/core'; /** Represents a user contact */ export declare class InlineQueryResultContactBaseModel { _: 'inlineQueryResultContact'; /** Unique identifier of the query result */ id: string; /** A user contact */ contact: Contact; /** Result thumbnail; may be null */ thumbnail?: PhotoSize; }