import { UnwrapRef } from 'vue';
/** Returns cb result only on client. Returns null on server  */
export declare const useClientOnly: <T>(cb: () => T) => import("vue").Ref<UnwrapRef<T> | null>;
