import { Sticker } from '@airgram-dev/core'; /** Represents a sticker */ export declare class InlineQueryResultStickerBaseModel { _: 'inlineQueryResultSticker'; /** Unique identifier of the query result */ id: string; /** Sticker */ sticker: Sticker; }