import { TranslateService } from '@ngx-translate/core'; export interface SkyErrorMessages { [key: string]: string | any; } export declare class StyErrorMessagesService { translate: TranslateService; constructor(translate: TranslateService); errorMessages: SkyErrorMessages; getErrorMessageByCode(code: string | number, errorMessages?: SkyErrorMessages): any; }