import { InAppPurchase2, IAPProduct, IAPProducts } from '@ionic-native/in-app-purchase-2/ngx'; import { IStore } from "./store.interface"; import { Observable } from 'rxjs'; export declare class IAPStore implements IStore { private store; constructor(store: InAppPurchase2, debug?: boolean); registerProduct(id: string, type: string): Promise; order(id: string): Promise; ready(): Promise; owned(id: string): Observable; approved(id: string): Observable; verified(id: string): Observable; refresh(): void; }