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