import { RichBlockListItem } from './';
/**
* ## RichBlockList
* A list of blocks, corresponding to the HTML tag
or with multiple nested tags - .
* @see https://core.telegram.org/bots/api#richblocklist
*/
export type RichBlockList = {
/**
* Type of the block, always "list"
*/
type: 'list';
/**
* Items of the list
*/
items: RichBlockListItem[];
};