/**
 * Fetch a file at `url` and trigger a browser download with the given filename.
 * Goes via a blob + temporary anchor so we honour the `download` attribute
 * even when the file is served same-origin without `Content-Disposition`.
 */
export declare const downloadFile: (url: string, fileName: string) => Promise<void>;
