export type CompliationProcess = { percentage: number; info: string; }; declare function generateProgressHtml(progressApi: string, progress: CompliationProcess): string; export default generateProgressHtml;