import { ControlBase } from "../controlbase"; import { IActionData } from "../../core/interfaces/iactiondata"; import { IControlConfiguration } from "../../core/interfaces/icontrolconfiguration"; import { IControlResources } from "../../core/interfaces/icontrolresources"; export declare class TextBlockControl extends ControlBase { constructor(controlName: string, eventHandlers: IActionData[], controlConfig: IControlConfiguration, controlResources: IControlResources); protected registerControlEventSourcesInternal(htmlControl: HTMLElement): void; protected unregisterControlEventSourcesInternal(htmlControl: HTMLElement): void; }