/** * Hook to determine Redux integration status and provide conditional Redux usage */ export declare const useReduxIntegration: () => { useRedux: boolean; apiClient: ApiClientConfig; useConditionalRedux: (reduxHook: () => T, fallbackValue: T) => T; conditionalDispatch: (action: any) => any; };