import type { ImageUploadConfig, ImageUploadResponse } from "./Providers.types"; /** * Hook for handling image uploads with customizable upload mechanism. * * - If uploadImage prop is provided to TemplateProvider: uses custom upload function * - If uploadImage prop is NOT provided: falls back to default GraphQL upload using apiUrl */ export declare function useImageUpload(): { uploadImage: (config: ImageUploadConfig) => Promise; };