import { JSONSchema } from '../interfaces';
export declare class CompareKeysBySchemaService {
    /**
     * @param key1 the first key
     * @param key2 the second key
     * @param schema schema of the parent object
     */
    compare(key1: string, key2: string, schema: JSONSchema): number;
}
