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