export declare function normalizePath(p: string): string; export declare function expandHome(filepath: string): string; export declare function applyFileEdits(filePath: string, edits: Array<{ oldText: string; newText: string; }>, dryRun?: boolean): Promise; interface FileInfo { size: number; created: Date; modified: Date; accessed: Date; isDirectory: boolean; isFile: boolean; permissions: string; } export declare function getFileStats(filePath: string): Promise; export {};