/** * Spreadsheet sheet metadata. Present for blocks parsed from spreadsheet files, such as Excel workbooks. */ export interface BlockMetadataSheet { /** The zero-based index of the sheet in the original workbook. */ index: number; /** The name of the sheet in the original workbook. */ name: string; }