import type { Update } from './types.js'; export interface BlobOptions { token?: string; } export declare function uploadUpdate(update: Update, opts?: BlobOptions): Promise; export declare function fetchUpdateByApi(id: string, viewerUrl: string): Promise; export declare function fetchUpdateByBlob(id: string, opts?: BlobOptions): Promise;