import { AdditionalLayerEnum } from "../Commons";
export interface Point {
    x: number;
    y: number;
}
export declare const ORDER_PROPS: {
    radius: number;
    linkWith: number;
};
export declare function buildLayer(layerShadowRoot: ShadowRoot, layer: AdditionalLayerEnum, elements: HTMLElement[], additionalStyle: string, isFullWith: boolean, displayLinkBetweenElements: boolean, displayNavigationOrder?: boolean): void;
export declare function addLayerToShadowDom(dom: ShadowRoot, layer: AdditionalLayerEnum): void;
export declare function removeLayerToShadowDom(dom: ShadowRoot, layer: AdditionalLayerEnum): void;
