import * as DataLoader from 'dataloader'; import { DynamoDB } from 'aws-sdk'; import { Key } from 'aws-sdk/clients/dynamodb'; export declare type Options = { readonly client: DynamoDB; }; export declare type ItemToGet = { readonly table: string; readonly key: Key; }; export declare function createDataLoader(options: Options): DataLoader;