export declare abstract class AbstractDownloader {
    protected triggerDownload(content: string, fileName: string, fileType: '.jpg' | '.png' | '.svg' | '.webp' | '.json' | '.txt'): void;
}
