import { WebPlugin } from '@capacitor/core'; import { SubscriptionsPlugin, ProductDetailsResponse, PurchaseProductResponse, CurrentEntitlementsResponse, LatestTransactionResponse, RefundLatestTransactionResponse, AndroidProductType } from './definitions'; export declare class SubscriptionsWeb extends WebPlugin implements SubscriptionsPlugin { setGoogleVerificationDetails(options: { googleVerifyEndpoint: string; bid: string; }): void; echo(options: { value: string; }): Promise<{ value: string; }>; getProductDetails(options: { productIdentifier: string; }): Promise; purchaseProduct(options: { productIdentifier: string; accountId?: string; acknowledgePurchases?: boolean; productType?: AndroidProductType; }): Promise; getCurrentEntitlements(options: { sync: boolean; productType?: AndroidProductType; }): Promise; getLatestTransaction(options: { productIdentifier: string; }): Promise; refundLatestTransaction(options: { productIdentifier: string; }): Promise; manageSubscriptions(): void; }