import { OnInit } from "@angular/core"; import { UntypedFormBuilder, UntypedFormGroup } from "@angular/forms"; import { MatSnackBar } from "@angular/material/snack-bar"; import { SupplierService } from "../services/supplier.service"; import { MatDialog } from "@angular/material/dialog"; import { FilesService, UserService } from "smartstock-core"; import { SupplierModel } from "../models/supplier.model"; import { Router } from "@angular/router"; import { MatBottomSheetRef } from "@angular/material/bottom-sheet"; import * as i0 from "@angular/core"; export declare class SupplierCreateFormComponent implements OnInit { private readonly formBuilder; private readonly snack; private readonly dialog; private readonly router; private readonly fileService; private readonly userService; private readonly supplierService; newSupplierForm: UntypedFormGroup; createSupplierProgress: boolean; supplier: SupplierModel; bottomRef: MatBottomSheetRef; constructor(formBuilder: UntypedFormBuilder, snack: MatSnackBar, dialog: MatDialog, router: Router, fileService: FilesService, userService: UserService, supplierService: SupplierService); ngOnInit(): void; initiateForm(): void; createSupplier(): void; cancel($event: Event): void; mediaBrowser($event: MouseEvent): Promise; close($event: MouseEvent): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }