export declare enum Positions {
    TOP = "top",
    BOTTOM = "bottom",
    BEFORE = "before",
    AFTER = "after"
}
export declare function moveByElements(fromEl: Element, toEl: Element, type: string): void;
export declare function moveByElementQueries(from: string, to: string, type: string): void;
