export interface Pronouns { id: number defaultGender: string pronouns: string displayOrder: number usePlural: boolean subjective: string adjective: string possessive: string reflexive: string objective: string } export interface PronounsAutocomplete { pronouns: string usePlural: boolean subjective: string adjective: string possessive: string reflexive: string objective: string }