import { RichText } from './'; /** * ## InputRichBlockSectionHeading * A section heading, corresponding to the HTML tags

,

,

,

,

, or
. * @see https://core.telegram.org/bots/api#inputrichblocksectionheading */ export type InputRichBlockSectionHeading = { /** * Type of the block, always "heading" */ type: 'heading'; /** * Text of the block */ text: RichText; /** * Relative size of the text font; 1-6, 1 is the largest, 6 is the smallest */ size: number; };