import * as t from '../../common/types'; export * from '../../common/types'; export declare type SheetCtx = { event$: t.Subject; dispose$: t.Observable; fetch: t.ISheetFetcher; cache: t.IMemoryCache; pool: t.ISheetPool; sheet: { load(args: { ns: string; }): Promise>; create(args: { implements: string; }): Promise>; }; };