export interface Computed<T> {
    get current(): T;
}
export declare function computed<T>(cb: () => T): Computed<T>;
