import ' rollup-plugin-inject-process-env';
export interface StateStorage<T> {
    get(): T | undefined;
    set(val: T): void;
}
