import { OnInit } from '@angular/core'; import { UntypedFormBuilder, UntypedFormGroup } from '@angular/forms'; import { MatSnackBar } from '@angular/material/snack-bar'; import { MatDialogRef } from '@angular/material/dialog'; import { DialogCategoryDeleteComponent } from './dialog-category-delete.component'; import { CategoryService } from '../services/category.service'; import * as i0 from "@angular/core"; export declare class DialogCategoryCreateComponent implements OnInit { private readonly formBuilder; private readonly snack; private readonly categoryService; dialogRef: MatDialogRef; newCategoryForm: UntypedFormGroup; createCategoryProgress: boolean; constructor(formBuilder: UntypedFormBuilder, snack: MatSnackBar, categoryService: CategoryService, dialogRef: MatDialogRef); ngOnInit(): void; initiateForm(): void; createCategory(): void; cancel($event: Event): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }