import { Y as MigrationItem } from "../../types-CAmC_cW72.js"; //#region extensions/migrate-hermes/helpers.d.ts declare function resolveHomePath(input: string): string; declare function exists(filePath: string): Promise; declare function isDirectory(dirPath: string): Promise; declare function sanitizeName(name: string): string; declare function readText(filePath: string | undefined): Promise; declare function parseEnv(content: string | undefined): Record; declare function parseHermesConfig(content: string | undefined): Record; declare function isRecord(value: unknown): value is Record; declare function childRecord(root: Record | undefined, key: string): Record; declare function readString(value: unknown): string | undefined; declare function readStringArray(value: unknown): string[]; declare function appendItem(item: MigrationItem): Promise; //#endregion export { appendItem, childRecord, exists, isDirectory, isRecord, parseEnv, parseHermesConfig, readString, readStringArray, readText, resolveHomePath, sanitizeName };