interface FormUser { username: string; password: string | undefined; firstName: string; lastName: string; email: string; roles: string[] | undefined; } interface FormRole { role: string; description: string; } interface Roles { id: string; name: string; } export type { FormUser, FormRole, Roles };