import { KVL } from '../../../ldaccess/KVL'; import { BlueprintConfig, IBlueprintItpt, OutputKVMap } from '../../../ldaccess/ldBlueprint'; import { ILDOptions } from '../../../ldaccess/ildoptions'; import { LDConnectedState, LDConnectedDispatch, LDOwnProps, LDLocalState } from '../../../appstate/LDProps'; import { Component, ReactNode } from 'react'; export declare const NavBarWActionsName = "metaexplorer.io/material-design/NavBarWActions"; export declare type NavBarWActionState = { isDoRedirect: boolean; isDoRedirectCancel: boolean; isRightMenuOpen: boolean; }; export declare const NavBarWActionsBpCfg: BlueprintConfig; export declare abstract class AbstractNavBarWActions extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: null | NavBarWActionState & LDLocalState): null | NavBarWActionState & LDLocalState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; protected renderSub: any; constructor(props: any, stateExtensionInit: TStateExtension); onAppBarRightIconMenuClick: () => void; onAppBarSearchBtnClick: () => void; onCancelClick: () => void; render(): {}; protected renderCore(): ReactNode; }