export type GenerateCloudinaryUrlArgs = { cloudinaryPublicId: string; cloudName: string; mimeType?: string; transformOptions?: string; }; /** * Generates a Cloudinary URL from the given parameters. * Shared logic used by both generateURL and getAdminThumbnail. */ export declare function generateCloudinaryUrl({ cloudinaryPublicId, cloudName, mimeType, transformOptions, }: GenerateCloudinaryUrlArgs): string;