import { originOption } from '../../types'; export declare type OriginAction = { meta: { origin: originOption; }; }; export declare type ServerAction = OriginAction & { meta: { origin: '[server]'; }; }; export declare type ClientAction = OriginAction & { meta: { origin: '[client]'; }; }; export declare type ISpwConceptHash = string; export declare type ISpwConcept = { hash: ISpwConceptHash; label: string; src: string; };