import { SelectionSet } from "apollo-codegen-core/lib/compiler"; import { GraphQLType } from "graphql"; export declare type FragmentDependency = { name: string; importType: boolean; importString: boolean; }; declare type Dependencies = { global: string[]; fragments: FragmentDependency[]; }; declare const Dependencies: (selectionSet: SelectionSet, variables?: { name: string; type: GraphQLType; }[] | undefined) => Dependencies; export default Dependencies;