import Service from '@ember/service'; interface ITheme { primary: string; secondary: string; error: string; warning: string; info: string; success: string; } /** Theme service @class ThemeService @public */ export default class ThemeService extends Service implements ITheme { primary: string; secondary: string; error: string; warning: string; info: string; success: string; constructor(); getColor(color: string | undefined): string; } declare module '@ember/service' { interface Registry { 'theme': ThemeService; } } export {};