/** * Static session for a command session. This can be static as it is for a command line. * * Note: When vdev used as an API (not main use-case for now) command session will need to be redesigned. */ declare type SessionState = 'NO_LOCAL_REGISTRY'; export declare function addSessionState(state: SessionState): void; export declare function hasSessionState(state: SessionState): boolean; export {};