export interface ReduxDispatchOptions { action: Record | Record[]; storeIndex?: number; returnPath?: string; device?: string; } export interface ReduxResult { success: boolean; error?: string; storeCount?: number; storeIndex?: number; state?: unknown; previousAction?: unknown; } export declare function reduxDispatch(options: ReduxDispatchOptions): Promise; export interface ReduxGetStateOptions { storeIndex?: number; path?: string; device?: string; } export declare function reduxGetState(options?: ReduxGetStateOptions): Promise; //# sourceMappingURL=redux.d.ts.map