import { KompoElement, mounts, selector } from "../types"; export default function mount(parent: KompoElement, child: KompoElement | Array | Mountable | Array, selector?: selector): void; export declare function unmount(Element: KompoElement): void; export declare function unmountAll(Element: KompoElement): void; export declare function mountIndex(parent: KompoElement, child: KompoElement): Number; export declare function getMounts(Element: KompoElement): mounts; export declare class Mountable { Element: KompoElement; selector?: selector; useParentSelector: boolean; constructor(Element: KompoElement, selector?: selector, useParentSelector?: boolean); } export declare function mountable(Element: KompoElement, selector: selector, useParentSelector: boolean): Mountable; //# sourceMappingURL=mount.d.ts.map