export declare const use: (selector: HTMLElement | string) => Element | null;
export declare const append: (selector: HTMLElement | string, el: Node) => void;
export declare const remove: (selector: HTMLElement | string, el: Node) => void;
export declare const includes: (current: HTMLElement | null, container: HTMLElement) => boolean;
