import { TranslateService } from "@ngx-translate/core"; import { MatDialogRef } from "@angular/material/dialog"; import { FormControl } from '@angular/forms'; export declare class LzBookmarkCreateFolderComponent { private data; private dialogRef; private translate; isShowFoldersTree: boolean; folders: any; folderName: string; folderNameControl: FormControl; isFolderNameError: false; currentActiveFolder: any; constructor(data: any, dialogRef: MatDialogRef, translate: TranslateService); checkInput: (form: FormControl, type: string) => void; private checkErrors(); createFolder: () => void; chooseFolder: (item: any) => void; modalCancel: () => void; toogleTree: () => void; }