import { Common } from "./common"; import { IAuthClass } from "./auth-classes/auth-class"; import { Callback, ISheetDataOptions, NonStrict, OrArray } from "./utils/type_alias"; export declare class GoogleSheet extends Common { spreadsheetId: string; sheetId: number; constructor(authClass: IAuthClass, spreadsheetId: string, sheetId?: number); getData(options?: ISheetDataOptions | Callback>, callback?: Callback>): void; setData(data: OrArray[][]>, options?: ISheetDataOptions | Callback>, callback?: Callback>): void; }