import { StateType } from "../type/index.js";
export declare const State: <T>(data: T) => StateType<T>;
export declare function Effect(fn: () => void): void;
export declare function Values(fn: () => any): any;
