import { OnInit, EventEmitter, ChangeDetectorRef } from '@angular/core'; import { PlaceOrderComponent } from '@schoolbelle/shared/components'; import { GroupService } from '@schoolbelle/api/group'; import { LedgerService } from '@schoolbelle/api/ledger'; import { PurchaseService } from '@schoolbelle/api/purchase'; import { UserToGroupService } from '@schoolbelle/api/user-to-group'; import { LoadingService } from '@schoolbelle/common/loading'; import { DialogService } from '@schoolbelle/common/dialog'; import { TranslationService } from '@schoolbelle/common/translation'; export declare class PlaceOrderSchoolComponent extends PlaceOrderComponent implements OnInit { protected translation: TranslationService; protected loading: LoadingService; protected dialogs: DialogService; onUpdated: EventEmitter<{}>; showOptionalProducts: boolean; constructor(group: GroupService, ledger: LedgerService, purchase: PurchaseService, utg: UserToGroupService, cdRef: ChangeDetectorRef, locale_id: string, translation: TranslationService, loading: LoadingService, dialogs: DialogService); ngOnInit(): void; fillInBasicValues(): void; order(): import("rxjs").Observable<{ uuid: string; purchase_id: number; }>; }