import { AUTO_KEY_PREFIX, INTERNAL_KEY_PREFIX } from './constants.js'; export declare const getNextAutoKey: () => `${typeof AUTO_KEY_PREFIX}_${number}`; export declare const toInternalKey: (key: T) => `[internal]_${T}`;