import type { Environment } from '../../shared/types/index.js';
export declare class CloudinaryProvider {
    private env;
    constructor(env: Environment);
    uploadInvoiceToCloudinary(base64string: string): Promise<{
        fileUrl: string;
        imageUrl: string;
    }>;
}
