export declare const CLEAR_ALL_STATE = "CLEAR_ALL_STATE"; export declare const CLEAR_VALUE = "CLEAR_VALUE"; export declare const SET_VALUE = "SET_VALUE"; export declare const action: (type: any, payload?: {}) => { type: any; }; export declare const clear: (keys: any) => { type: string; keys: any; }; export declare const set: (key: any, value: any) => { type: string; key: any; value: any; }; export declare function createRequestTypes(base: any): { REQUEST?: string; SUCCESS?: string; FAILURE?: string; }; export declare function clearAllState(): { type: string; }; export declare function receiveError(type: any, err: any): { type: any; err: any; }; export declare function receiveSuccess(type: any, data: any): { type: any; data: any; }; export declare function request(type: any, endpoint: any, data?: null): { type: any; endpoint: any; data: null; }; export declare const sdkActionCreator: (sdkAction: any, actions?: {}, funcs?: {}) => (dispatch: any) => Promise; declare const reduxActions: {}; export default reduxActions;