import actionNames from "../action-names"; import { Action } from "./types"; import { TreeViewMode } from "../../new-ui/types/store"; import { Page } from "../../../constants"; export type SuitesPageSetCurrentTreeNodeAction = Action>; export declare const setCurrentTreeNode: (payload: SuitesPageSetCurrentTreeNodeAction['payload']) => SuitesPageSetCurrentTreeNodeAction; export type SuitesPageSetCurrentStepAction = Action>; export declare const setCurrentStep: (payload: SuitesPageSetCurrentStepAction['payload']) => SuitesPageSetCurrentStepAction; export type SuitesPageSetCurrentHighlightStepAction = Action>; export declare const setCurrentHighlightStep: (payload: SuitesPageSetCurrentHighlightStepAction['payload']) => SuitesPageSetCurrentHighlightStepAction; type SetTreeNodeExpandedStateAction = Action; export declare const setTreeNodeExpandedState: (payload: SetTreeNodeExpandedStateAction['payload']) => SetTreeNodeExpandedStateAction; type SetAllTreeNodesStateAction = Action; export declare const setAllTreeNodesState: (payload: SetAllTreeNodesStateAction['payload']) => SetAllTreeNodesStateAction; type RevealTreeNodeAction = Action; export declare const revealTreeNode: (payload: RevealTreeNodeAction['payload']) => RevealTreeNodeAction; type SetSectionExpandedStateAction = Action; export declare const setSectionExpandedState: (payload: SetSectionExpandedStateAction['payload']) => SetSectionExpandedStateAction; type SetStepsExpandedStateAction = Action; }>; export declare const setStepsExpandedState: (payload: SetStepsExpandedStateAction['payload']) => SetStepsExpandedStateAction; type SetTreeViewModeAction = Action; export declare const setTreeViewMode: (payload: SetTreeViewModeAction['payload']) => SetTreeViewModeAction; type SetSectionSizesAction = Action; export declare const setSectionSizes: (payload: SetSectionSizesAction['payload']) => SetSectionSizesAction; type SetBackupSectionSizesAction = Action; export declare const setBackupSectionSizes: (payload: SetBackupSectionSizesAction['payload']) => SetBackupSectionSizesAction; export type SetStrictMatchFilterAction = Action; export declare const setStrictMatchFilter: (strictMatchFilter: SetStrictMatchFilterAction['payload']) => SetStrictMatchFilterAction; export type SuitesPageAction = SetTreeNodeExpandedStateAction | SetAllTreeNodesStateAction | SuitesPageSetCurrentTreeNodeAction | SetSectionExpandedStateAction | SetStepsExpandedStateAction | RevealTreeNodeAction | SetTreeViewModeAction | SuitesPageSetCurrentStepAction | SuitesPageSetCurrentHighlightStepAction | SetSectionSizesAction | SetBackupSectionSizesAction | SetStrictMatchFilterAction; export {};