/** * Utility functions for fixing URL construction issues */ /** * Fix double slashes in URLs while preserving protocol slashes * @param url The URL to fix * @returns Fixed URL with single slashes in path */ export declare function fixUrlDoubleSlashes(url: string): string; /** * Properly join URL path segments without creating double slashes * @param segments Path segments to join * @returns Properly joined path */ export declare function joinUrlPath(...segments: string[]): string; /** * Fix Supabase storage URLs specifically * @param url Supabase storage URL * @returns Fixed URL */ export declare function fixSupabaseStorageUrl(url: string): string; //# sourceMappingURL=url-fix.d.ts.map