export interface Store { create: (key: string, data: any) => Promise<{ sessionId: string; }>; update: (id: string, newData: any) => {}; getById(id: string): Promise; delete: (id: string) => Promise; }