import { type AnyCell, type SheetProxy, type Uncellified } from "@okcontract/cells";
export declare const reactiveUncellify: <T>(proxy: SheetProxy, v: T | AnyCell<T>, name?: string) => AnyCell<Uncellified<T>>;
/**
 * deepCopy recreates a deep structure with ValueCells from any cell.
 */
export declare const deepCopy: (proxy: SheetProxy, cell: AnyCell<unknown>) => Promise<import("@okcontract/cells").ValueCell<unknown>>;
