import { TypedUseSelectorHook } from 'react-redux'; import { ReduxState, VerificationService, VerificationStore, ViewModel } from '../types/types'; export declare const useAppSelector: TypedUseSelectorHook; export declare const useAppDispatch: () => VerificationStore["dispatch"]; export declare const useProgramId: () => string; export declare const useProgramTheme: () => import('../types/types').ProgramTheme; export declare const useSegment: () => import('../types/types').Segment; export declare const useVerificationResponse: () => import('../types/types').VerificationResponse; export declare const useViewModel: () => T; /** * @deprecated use only the needed state slice custom hook(s). */ export declare const useVerificationService: () => VerificationService;