import { type Schema, type SchemaObjectValue } from "../../core/index.js"; export type AdditionalPropertyKey = (key: string, attempt: number) => string; export declare function generateNewKey(value: SchemaObjectValue, preferredKey: string, additionalPropertyKey: AdditionalPropertyKey): string; export declare function createAdditionalPropertyKey(preferredKey: string, attempt: number): string; export declare function createOriginalKeysOrder(properties: Exclude): string[];