import { FieldDefinitionNode } from "graphql"; declare type RelationshipMeta = { direction: "IN" | "OUT"; type: string; properties?: string; allowMultiple?: boolean; }; declare function getRelationshipMeta(field: FieldDefinitionNode, interfaceField?: FieldDefinitionNode): RelationshipMeta | undefined; export default getRelationshipMeta; //# sourceMappingURL=get-relationship-meta.d.ts.map