/** * This file was auto-generated by Fern from our API Definition. */ /** * Properties for a sheet within a spreadsheet */ export interface GoogleSheetsSheetProperties { /** Sheet title (required) */ title: string; /** Sheet index position */ index?: number; /** Grid properties (rowCount, columnCount) */ gridProperties?: Record; }