export interface IFileDestroyer { destroy(filePath: string): Promise; } export declare class FileDestroyer implements IFileDestroyer { destroy(filePath: string): Promise; }