/**
 * 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 { AbstractComponentService } from "./abstract-component-service";
export declare class TableAndGridService extends AbstractComponentService {
    buildResultSentence(selectedArray: HTMLTableElement | HTMLElement): Promise<string[]>;
    private extractHeaderAndDataRows;
}
