/**
 * Software Name : UUV
 *
 * SPDX-License-Identifier: MIT
 *
 * This software is distributed under the MIT License,
 * see the "LICENSE" file for more details
 *
 * Authors: NJAKO MOLOM Louis Fredice & SERVICAL Stanley
 * Software description: Make test writing fast, understandable by any human
 * understanding English or French.
 */
import { AdditionalLayerEnum } from "../Commons";
import { AbstractComponentService } from "./abstract-component-service";
export declare class DialogService extends AbstractComponentService {
    TRACKED_CLASS: string;
    show(dom: ShadowRoot, layer: AdditionalLayerEnum, elements: HTMLElement[], onSelect: (el: HTMLElement) => void, onReset: () => void): void;
    private overrideStyles;
    private computeTopPosition;
    private clone;
    buildResultSentence(selectedArray: HTMLElement): Promise<string[]>;
}
