/** * Enum representing the status of a verification check during Verify search. */ declare enum SearchCheckStatus { /** * The verification check is invalid. */ INVALID = "INVALID", /** * The verification check is valid. */ VALID = "VALID" } export { SearchCheckStatus };