/** * Gallery Save Service * Single Responsibility: Save media to device gallery */ import type { SaveMediaResult } from "./types"; declare class GallerySaveService { saveToGallery(mediaUri: string, prefix?: string): Promise; } export declare const gallerySaveService: GallerySaveService; export {};