import type { DownloadProgressInfo } from '../../index.js'; export interface Props { /** Progress data */ progress: DownloadProgressInfo | null; /** Label to show above progress bar */ label?: string; /** Show percentage text */ showPercent?: boolean; /** Show bytes downloaded */ showBytes?: boolean; } declare const DownloadProgress: import("svelte").Component; type DownloadProgress = ReturnType; export default DownloadProgress; //# sourceMappingURL=DownloadProgress.svelte.d.ts.map