import { getCompositeKey } from "./getCompositeKey.mjs"; //#region src/getValueStableKey.d.ts /** * Returns a stable key for the input value. * * @deprecated Use `getCompositeKey` from `@ls-stack/utils/getCompositeKey` * instead. * @param input - The value to get a stable key for. * @param maxSortingDepth - The maximum depth to sort the input value. Default * is 3. * @returns A stable key for the input value. */ declare const getValueStableKey: typeof getCompositeKey; //#endregion export { getValueStableKey };