import { IntlayerConfig } from "@intlayer/types/config";
import { Dictionary } from "@intlayer/types/dictionary";

//#region src/createType/createType.d.ts
declare const generateTypeScriptType: (dictionary: Dictionary) => string;
/**
 * This function generates a TypeScript type definition from a JSON object
 */
declare const createTypes: (dictionaries: Dictionary[], configuration: IntlayerConfig) => Promise<string[]>;
//#endregion
export { createTypes, generateTypeScriptType };
//# sourceMappingURL=createType.d.ts.map