import { BackgroundType } from './'; /** * ## ChatBackground * This object represents a chat background. * @see https://core.telegram.org/bots/api#chatbackground */ export type ChatBackground = { /** * Type of the background */ type: BackgroundType; };