import * as React from 'react'; import { ReactReduxContextValue } from "react-redux"; import { Store } from 'redux'; import { LIB_REDUX_DISPATCH_FIELD_NAME } from 'redux-openfin'; export declare const REACT_OPENFIN_STORE_CTX: React.Context>; export declare const REACT_OPENFIN_STORE = "REACT_OPENFIN_STORE"; export declare const REACT_OPENFIN_DISPATCH_FIELD_NAME = "REACT_OPENFIN_DISPATCH"; export declare const defaultExtAct: { [LIB_REDUX_DISPATCH_FIELD_NAME]: string; }; export declare type InitSeed = Store; export declare type ShownFunction = () => boolean; export declare type ShownField = boolean | ShownFunction; export interface ILaunchBarItem { icon: any; disabled: boolean; svg: string; appJson: any; shown?: ShownField; }