import actionNames from "../action-names"; import { Action } from "./types"; /** This action is used in old UI only */ type GroupTestsByKeyAction = Action; export declare const groupTestsByKey: (payload: string | undefined) => GroupTestsByKeyAction; type SetCurrentGroupByExpressionAction = Action; export declare const setCurrentGroupByExpression: (payload: SetCurrentGroupByExpressionAction['payload']) => SetCurrentGroupByExpressionAction; export type GroupTestsAction = SetCurrentGroupByExpressionAction | GroupTestsByKeyAction; export {};