/** * File system utilities for recoder.xyz */ export declare function getCacheDirectoryPath(storagePath: string): Promise; export declare function fileExistsAtPath(filePath: string): Promise; export declare function getKiloBaseUriFromToken(token: string): string; export declare function safeWriteJson(filePath: string, data: any): Promise; export declare function countTokens(content: any): number; export declare class XmlMatcher { private tagName; private callback; private buffer; private matches; constructor(tagName?: string, callback?: (match: { matched: boolean; data: string; }) => void); update(text: string): undefined; final(): string[]; private escapeRegex; } export declare function t(key: string, params?: any): string; export declare class ContextProxy { static instance: ContextProxy; globalStorageUri: { fsPath: string; }; } //# sourceMappingURL=file-utils.d.ts.map