import { MapperOptions, MapperState, ValueRange, ValueRangesResponse } from './types';
export declare const mapData: (sheets: ValueRange[]) => MapperState[];
export declare const fetchBatchData: ({ apiKey, sheetId, sheetsNames, }: MapperOptions) => Promise<ValueRangesResponse>;
export declare const fetchAllSheetsData: ({ apiKey, sheetId, }: MapperOptions) => Promise<ValueRangesResponse>;
