import HtmlNode from '../Extension/HtmlNode'; interface InputInformationProps { readonly information?: string; readonly onClickInformation?: (visible: boolean) => void; } declare class InputInformation extends HtmlNode { private readonly props; private open; constructor(element: HTMLElement | null | undefined, props: InputInformationProps); onClick(): void; render(): void; } export default InputInformation;