import { TranslateService } from '@ngx-translate/core'; export declare class GdkAlertService { private translate; constructor(translate: TranslateService); stransToString(val: string): string; success(message: string): void; error(message: string): void; warning(msg: string): void; confirm(message: string, title?: string, okCallback?: () => void): void; alert(msg: string, title?: string, callBack?: () => void): void; notify(msg: string, typeAlert: 'success' | 'error' | 'warning', wait?: number, callBack?: () => void): void; loading(show?: boolean, optionshow?: Number): void; }