export default class NavigatingService {
    static getCurrentIndex(): number;
    static getRowId(): string;
    static getRowIdByIndex(index: number): string;
    static isQuantityOnFocus: () => boolean;
    static quantityIncrement(): void;
    static quantityDecrement(): void;
    static focusToActive(onMouseDown: boolean): void;
    static getIndexOnMouseDown(element: any): number;
    static navigateToOnMouseDown(element: any): number;
    static makeQuerySelectorByRowIndex: (index: number) => string;
    static getNextInputFocus: () => HTMLInputElement;
    static getTabIndexByInputFocus: () => number;
    static navigateTo(index: number, focusToActive?: boolean, onMouseDown?: boolean): boolean;
    static tabNavidateTo(): void;
    static toggleSelectionByRowActive(): void;
    static remove(): void;
}
