import { ConcatList } from "../../../observable"; import { ViewModel, Options as BaseOptions } from "../../ViewModel"; import type { Session } from "../../../matrix/Session.js"; import type { SegmentType } from "../../navigation"; import type { BaseToastNotificationViewModel } from "./BaseToastNotificationViewModel"; type Options = { session: Session; } & BaseOptions; export declare class ToastCollectionViewModel extends ViewModel { readonly toastViewModels: ConcatList; constructor(options: Options); } export {};