import { ModelDefinition } from "@graphback/core"; import { GraphQLType } from "graphql"; export declare const isDataSyncClientModel: (model: ModelDefinition) => any; export declare const makeDirIfNotExists: (path: string) => void; /** * Trys to convert the input graphql type to a ts type. * If the input type is composite or "ID", * "string" is returned instead to represent ids * * @param type * @returns the ts equivalent of the input graphql type */ export declare const convertToTsType: (type: GraphQLType) => string; /** * Loads the schema object from the directory or URL * * @export * @param {string} modelDir * @returns {string} */ export declare function loadSchema(modelPath: string): import("graphql").GraphQLSchema;