import { Context } from '.';
/**
 * Deep clone object
 * @param object Object to clone
 * @returns The cloned object
 */
export declare function clone<T>(object: T): T;
export declare const isServer: boolean;
export declare const isBrowser: boolean;
export declare const hydrateState: <S>(ctx: Context<S>) => void;
