import type { Ref, WritableComputedRef } from 'vue'; export type ReactStyleUpdater = (updater: INTERNAL_VALUE | ((prevState: INTERNAL_VALUE) => INTERNAL_VALUE)) => void; type Other = { recalculate: () => void; tanstackGetter: () => INTERNAL_VALUE; tanstackSetter: ReactStyleUpdater; }; type Options = { get(value: INTERNAL_VALUE): EXTERNAL_VALUE; set(oldValue: EXTERNAL_VALUE): INTERNAL_VALUE; sync?(oldValue: INTERNAL_VALUE): INTERNAL_VALUE; value: Ref; }; export declare const useComputedRef: (options: Options) => Other & WritableComputedRef; export {};