export enum KycModeKind { VIEW = 'VIEW', EDIT = 'EDIT', } export type KycMode = KycModeKind.VIEW | KycModeKind.EDIT;