import { AlertState } from "./stateInterface"; import AlertModel from "./../models/AlertModel"; export default class Mutations { add: (state: AlertState, alert: AlertModel) => void; remove: (state: AlertState, alert: AlertModel) => void; protected guid(): string; }