import type { PersonView } from "./PersonView"; /** * A person response for actions done to a person. */ export type PersonResponse = { person_view: PersonView; };