import { Ref } from 'vue';
import { InputPaths, Path } from '../common/types';
export declare function useTranslatePathsToObject(input: Ref<InputPaths>): {
    objects: Ref<Record<string, Path>, Record<string, Path>>;
    isInCompatibilityModeForPath: Ref<boolean, boolean>;
};
