import { FunctionComponent } from 'react'; export interface PaypalPayButtonProps { disabled?: boolean; loading?: boolean; handlePay?: () => void; } export declare const PaypalPayButton: FunctionComponent; export default PaypalPayButton;