import { Form } from './form'; import { GroupOptions } from './interfaces'; import { GroupEvents } from './constants'; export declare class Group { options: GroupOptions; containerElement: HTMLElement | null; schemaContainerElement: HTMLElement | null; labelElement: HTMLElement | null; private _id; private _parent; private _form; private _isMounted; private _isVisible; private _type; private _parsedConditions; constructor(parent: HTMLElement, form: Form, options: GroupOptions); initializeOptions(options: GroupOptions): void; initialize(): Promise; private parseStringConditions; getId(): string; getContainer(): HTMLElement | null; getSchemaContainer(): HTMLElement | null; getType(): string; getVisibility(): boolean; createContainerElement(): void; createSchemaContainerElement(): void; createLabelElement(): void; onGui(): void; private mount; private unmount; destroy(): void; handleVisibility(): void; reset(): Promise; update(): Promise; private updateVisibilityBasedOnConditions; dispatchEvent(event: GroupEvents, data?: boolean | null): void; on(event: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions): void; off(event: string, listener: EventListenerOrEventListenerObject, options: boolean | AddEventListenerOptions): void; }