import { FilePathType } from '../../shared/types/file-path.type'; export declare abstract class UploaderAbstract { protected uploadToFile(filePath: FilePathType, content: string): void; protected formatToJSON(data: any): string; abstract upload(data: any, filePath: FilePathType): void; }