export interface CreateUser {
  username?: string;
  email?: string;
  [additionalKey: string]: any;
}
