export interface RegisterCredentials { username: string; email: string; password: string; confirmPassword: string; } export interface RegisterConfig { logoUrl?: string; termsAndConditionsRoute?: string; loginRoute?: string; showTermsCheckbox?: boolean; showConfirmPassword?: boolean; } export interface RegisterServiceInterface { register(credentials: any): any; }