import "exports"; declare class Props { private static u; private static c; private static l; private static f; names: Record; /** * Gets a property on an HTML element. * @throws {TypeError} if node is not resolved to an element */ get(node: T, name: U): U extends keyof T ? T[U] : undefined; get(node: string | Element, name: 'textContent' | 'textcontent'): (string | "") | throws; /** * Sets a property on an HTML element. * @throws {TypeError} if node is not resolved to an element */ set(node: T, name: U, value: T[U]): T; set(node: T, name: U): T; } declare const _default: Props; export = _default; //# sourceMappingURL=dom-prop.d.ts.map