import { Store } from '@storefront/flux-capacitor'; import { BaseService } from '../core/service'; import StoreFront from '../storefront'; declare class PastPurchaseService extends BaseService { constructor(app: StoreFront, opts: PastPurchaseService.Options); init(): void; pushState(): void; fetchProducts(urlState: Store.History): void; } declare namespace PastPurchaseService { interface Options { } } export default PastPurchaseService;