import { WebPlugin } from '@capacitor/core'; import { SquarePaymentPlugin } from './definitions'; export declare class SquarePaymentWeb extends WebPlugin implements SquarePaymentPlugin { constructor(); initApp(_options: { applicationId: string; }): Promise; requestNonce(_options: { amount: number; }): Promise<{ nonce: string; }>; } declare const SquarePayment: SquarePaymentWeb; export { SquarePayment };