import { FORM_MODE, ITagCategory } from "../../../types"; export declare let tagFormMode: FORM_MODE; export declare let selectedTag: any; export declare function renderTagFormPane(): HTMLDivElement; export declare function initFormData(tagId?: string): void; export declare function getTagFormData(): { tagName: string; tagDescription: string; tagEmbed: string; tagCategoryId?: string; tagSubcategoryId?: string; }; export declare function setTagCategoriesOption(): void; export declare function toggleDropdown(elementId: string): void; export declare function clearInnerHTML(elementId: string): void; export declare function renderCategoryDropdownOptions(elementId: string, items: Array, toggleId?: string): void; export declare function renderSubcategoryDropdownOptions(elementId: string, items: Array): void; export declare function clearTagFormDropdown(): void; export declare function clearTagFilterDropdown(): void; export declare function setTagFormMode(formMode: FORM_MODE): void;