import type { Finder, SubSchema } from '../../../../../schema/actions/finder/index.js'; import type { Deduper } from '../../../../../schema/actions/utils/deduper.js'; import type { SchemaCondition } from '../../condition.js'; export declare const getComparedSubSchemas: (schemaFinder: Finder, comparedValue: unknown, transform: boolean | undefined) => SubSchema[] | undefined; export declare const joinDedupedConditions: (dedupedConditions: Deduper, attributePath: string) => SchemaCondition;