import { BaseElement } from './BaseElement'; export interface PayPalPaymentContext { paymentId: string; checkoutKey: string; onAuthorize: () => Promise; } export declare class PayPalElement extends BaseElement { private _paymentContext; private _button; setPaymentContext(context: PayPalPaymentContext): void; protected render(): void; protected getCss(): string; protected getValue(): null; protected getIsValid(): boolean; protected getError(): null; } //# sourceMappingURL=PayPalElement.d.ts.map