export declare const Obj: ObjectConstructor; export declare const stringify: (x: any) => string; export declare const dashToCamel: (dashed: string) => string; export declare const camelToDash: (camel: string) => string; export declare const pascalToDash: (pascal: string) => string; export declare const toString: (value: T) => string; export declare const isString: (x: any) => x is string; export declare const getAttribute: (node: Element | HTMLElement, name: string) => string | null; export declare const hasOwn: (obj: Object, prop: string | symbol) => boolean; export declare const setAttribute: (node: HTMLElement, name: string, value?: string | boolean | null) => void; export declare const appendChild: (parent: Node, child: Node) => Node; export declare const entries: (iterable: any) => any; export declare const isTemplate: (node: Node) => node is HTMLTemplateElement; //# sourceMappingURL=util.d.ts.map