export declare class LocatorDebug {
    static logs: any[];
    static indentation: string;
    static initializeLogs(ui5Selector: UI5Selector): void;
    static debugLog(...messages: any[]): void;
    static beginLog(name: string, elementCount: number): void;
    static endLog(name: string, elementCount: number): void;
    static printLogs(finalElementCount: number): void;
    private static indent;
    private static sameLogAlreadyPrinted;
}
