import { Y as MigrationItem } from "../../types-CAmC_cW72.js"; //#region extensions/migrate-claude/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 readJsonObject(filePath: string | undefined): Promise>; declare function isRecord(value: unknown): value is Record; declare function childRecord(root: Record | undefined, key: string): Record; declare function appendItem(item: MigrationItem): Promise; //#endregion export { appendItem, childRecord, exists, isDirectory, isRecord, readJsonObject, readText, resolveHomePath, sanitizeName };