import { onShowAlertType } from "../types/onShowAlertType"; import { ObservableReactValue } from "../utils/observers"; declare class SnackbarModel { readonly open: ObservableReactValue; title: string; show: onShowAlertType; close: () => void; constructor(callback?: onShowAlertType); } export default SnackbarModel;