import { ClassType } from "./graphq-compose-typescript"; import { InputTypeComposer, ObjectTypeComposer } from "graphql-compose"; export declare type Dict = { [key in K]: T; }; export declare type StringKey = (keyof T) & string; export declare function getConstructor(instance: T): ClassType; export declare type IOComposers = ObjectTypeComposer | InputTypeComposer; export declare function isString(obj: any): obj is string;