import { ReduxState, VerificationServiceAction } from '../types/types'; /** * @description Most of the state for the VerificationService * @example as a user fills-in the HTML form, we can track the data entered here in the view model. * @param state * @param action */ export declare const verificationServiceReducer: (state: ReduxState, action: VerificationServiceAction) => ReduxState;