import { ServiceAccountCredentials } from '../types'; import { SpreadsheetWorksheet } from '../old/SpreadsheetWorksheet'; export declare function Sheets(id: string): { withAuthentication: (creds: ServiceAccountCredentials) => { worksheet: (id: number) => { get: () => Promise; }; }; withoutAuth: () => { worksheet: (id: number) => { get: () => Promise; }; }; }; //# sourceMappingURL=Sheets.d.ts.map