import { RichTextUnion } from '@airgram-dev/core'; /** A preformatted text paragraph */ export declare class PageBlockPreformattedBaseModel { _: 'pageBlockPreformatted'; /** Paragraph text */ text: RichTextUnion; /** Programming language for which the text should be formatted */ language: string; }