export type StringifiedBoolean = 'true' | 'false'

export type ApplicantData = {
  first_name?: string
  last_name?: string
  email?: string
}

export type DecoupleResponseOptions = 'success' | 'error' | 'onfido'
