import { IAttribute, IControl } from "../abstractions"; export type ElementTypes = Node | Element | HTMLElement | Text | DocumentFragment | Comment | HTMLDivElement; export declare class controlAttribute implements IAttribute> { private _parent; constructor(parent: IControl); attributes: { name: string; value: any; }[]; add(attribute: object | string): IControl; remove(key: string): IControl; has(key: string): boolean; get(key: string): string | null; }