import { WebStorage } from '@platform6/p6portal-shared-api'; import { WebApiImpl } from '../utils/WebApiImpl'; import { Dispatch } from 'redux'; export declare const webStorage: WebStorage; export declare const webApiImpl: WebApiImpl; import * as Wordings from '@amalto/wordings'; export declare const WORDINGS: Wordings.CompiledWordings; export interface Action { type: string; value: any; } export interface ReduxProps { dispatch?: Dispatch; } export interface SearchMeta { pageNumber: number; totalSize: number; previousPageContext: string; nextPageContext: string; }