import { AureliaShopAdmin, AdminDeliveryModel } from 'aurelia-shop'; import { UxModalService } from '@aurelia-ux/modal'; export declare class DeliveryPreview { private modalService; deliveryId: string; shopAdmin: AureliaShopAdmin; delivery: AdminDeliveryModel; deliveryCustomerFullname: string; loading: boolean; notFound: boolean; constructor(modalService: UxModalService); bind(): Promise; deliveryIdChanged(): void; shopAdminChanged(): void; init(): Promise; openDelivery(): Promise; }