import type { OptionsType } from './types'; export declare const stringify: (value: any) => any; export declare const decode: (str: string) => string; export declare const isClientSide: (options?: OptionsType) => boolean; export declare const getRenderPhase: () => "server" | "client";