import { Scope } from './isolate'; export declare function isClassOrId(str: string): boolean; export declare function isDocFrag(el: Element | DocumentFragment): el is DocumentFragment; export declare function checkValidContainer(container: Element | DocumentFragment | string): void; export declare function getValidNode(selectors: Element | DocumentFragment | string): Element | DocumentFragment | null; export declare function getSelectors(namespace: Array): string; export declare function isEqualNamespace(a: Array | undefined, b: Array | undefined): boolean; export declare function makeInsert(map: Map>): (type: string, elm: Element, value: any) => void;