import { IBranch } from '../../lib/store'; import { App } from '../../lib/app'; import { INote } from '@wix/quix-shared'; export interface IQueue { notes: Record; size: number; } export interface IView { markedMap: Record; markedList: INote[]; note: INote; saving: boolean; } declare const _default: (app: App) => IBranch; export default _default;