import { Store } from "vuex"; import ConfigInterface from "../../config/ConfigInterface"; import StateServiceInterface from "../../state/StateServiceInterface"; declare class AlertService { protected store: Store; protected configService: { duration: number; }; constructor($config: ConfigInterface, stateService: StateServiceInterface); error(message: string, title?: string, duration?: number): void; info(message: string, title?: string, duration?: number): void; success(message: string, title?: string, duration?: number): void; warning(message: string, title?: string, duration?: number): void; protected makeAlert(message: string, title: string, duration?: number, severity?: string): void; } export default AlertService;