import type { Result } from '../domain/result.js'; import type { GraphError } from './graph-client.js'; type SheetCsv = { readonly name: string; readonly csv: string; }; declare const readSheetsAsCsv: (bytes: Uint8Array) => Result, GraphError>; export { readSheetsAsCsv }; export type { SheetCsv };