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 NavSearchBarName = "metaexplorer.io/material-design/NavSearchBar"; export declare const NavSearchBarBpCfg: BlueprintConfig; export declare type NavSearchBarState = LDLocalState & { searchValue: string; routeSendBack: string; isDoRedirect: boolean; }; export declare abstract class AbstractNavSearchBar extends Component implements IBlueprintItpt { static getDerivedStateFromProps(nextProps: LDConnectedState & LDConnectedDispatch & LDOwnProps, prevState: NavSearchBarState): null | NavSearchBarState; cfg: BlueprintConfig; outputKVMap: OutputKVMap; consumeLDOptions: (ldOptions: ILDOptions) => any; ownKVLs: KVL[]; protected renderInputContainer: any; constructor(props: any); onSearchChange: (evtVal: any) => void; onBackBtnClick: () => void; render(): ReactNode; }