export interface fetchSupabasePrivateImageArgs { apikey: string; callback: (url: string | Blob) => void; fetchUrl: string; token: string; } export declare const fetchSupabasePrivateImage: ({ apikey, callback, fetchUrl, token, }: fetchSupabasePrivateImageArgs) => Promise;