import { Project, Type } from "ts-morph"; declare const convexExports: readonly ["anyDatabaseReader", "anyDatabaseWriter", "id"]; /** * This exports a few TypeScript types that are used in the codemod. * * To do so, we create a temporary file that references the relevant types, * and we add it to the ts-morph project. This temporary file must be deleted * after the types are used (see {@link deleteResolveTypesTempFile}). */ export declare function resolveTypes(project: Project, root: string): Record<(typeof convexExports)[number], Type>; export declare function deleteResolveTypesTempFile(project: Project, root: string): void; export {}; //# sourceMappingURL=resolveTypes.d.ts.map