import { IStore } from './store.interface'; import { IAPProduct } from '@ionic-native/in-app-purchase-2/ngx'; import { Observable } from 'rxjs'; export declare class FakeStore implements IStore { testingProducts: any[]; purchased: string[]; verbose: boolean; private initialList; private verifiedList; constructor(testingProducts: any[], purchased?: string[], verbose?: 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; private getIndividualProduct; }