export declare class PaymentError extends Error {
    code?: string | undefined;
    constructor(message: string, code?: string | undefined);
}
