/** * Information about the page this block appears on. */ export interface BlockMetadataPage { /** The page number where this block appears. */ number: number; /** The width of the page in points. */ width?: number; /** The height of the page in points. */ height?: number; }