type Env = 'none' | 'digitCreate' | 'digitDelete' | 'screenRatio'; interface EnvCtxType { envCtx: Env[]; setEnvCtx: (e: Env) => void; exitEnvCtx: (e: Env) => void; getEnvCtx: () => Env; clearEnvCtx: () => void; } export declare const useEnvCtxStore: import('zustand').UseBoundStore>; export {};