import { InputFileUnion, InputThumbnail } from '@airgram-dev/core'; /** A sticker message */ export declare class InputMessageStickerBaseModel { _: 'inputMessageSticker'; /** Sticker to be sent */ sticker: InputFileUnion; /** Sticker thumbnail, if available */ thumbnail: InputThumbnail; /** Sticker width */ width: number; /** Sticker height */ height: number; }