export declare type TransformInitialState = (state: any, params: { namespacing: string[]; }) => LocalState; export interface IGetFormattedInitialState { initialState: any; transformInitialState?: TransformInitialState; namespacing: string[]; defaultState: LocalState; } export declare const getFormattedInitialState: (params: IGetFormattedInitialState) => LocalState;