import { ConvertedControls } from "../ControlTypings/Typing"; import { GenericInfo } from "../Typing/Generic"; declare function ListenControl(controlInfo: GenericInfo, listener: (newVal: T) => void): () => void; declare function CreateControlStates( converted: ConvertedControls, controls: Record, creator: (control: any) => any, ): any; declare function UpdateControlStates( states: {}, converted: ConvertedControls, controls: Record, updater: (state: any, value: any) => void, ): void;