// Font downloading interface export interface IFontDownloader { downloadAll(): Promise; downloadSpecific(fontIds: string[]): Promise; validateDownloads(fontIds?: string[]): Promise; cleanup(): Promise; }