import type { FlowOptions, FlowProps, VueFlowStore } from '../types' /** * Stores all currently created store instances */ export declare class Storage { currentId: number flows: Map static instance: Storage static getInstance(): Storage set(id: string, flow: VueFlowStore): Map get(id: string): VueFlowStore | undefined remove(id: string): boolean create(id: string, preloadedState?: FlowOptions): VueFlowStore getId(): string } declare const _default: (options?: FlowProps) => VueFlowStore export default _default