export declare const ZENOPAY_CONFIG: {
    sandbox: {
        baseUrl: string;
        endpoints: {
            payment: string;
            status: string;
            webhook: string;
        };
    };
    production: {
        baseUrl: string;
        endpoints: {
            payment: string;
            status: string;
            webhook: string;
        };
    };
};
