import type { DataSource } from 'apollo-datasource';
export declare type DataSources<TContext> = {
    [name: string]: DataSource<TContext>;
};
export declare type ApolloServerDataSources<TContext = any> = () => DataSources<TContext>;
