export declare const AlipayEndpoints: {
    /**
     * Initial Alipay
     */
    INITIAL: (sandbox: boolean) => string;
    /**
     * Refund Alipay
     */
    REFUND: (sandbox: boolean, orderId: string) => string;
    /**
     * Retrieve Alipay
     */
    RETRIEVE: (sandbox: boolean, orderId: string, merchantCode: string) => string;
};
