import type { AnyCaseNodeOrData, MatchContextWithoutLookup } from '../../../../entities/types';
import type { LookupMap, LookupType } from './types';
export declare const addLookup: (matcherLookup: LookupMap, lookupType: LookupType, uniqueName: string, matcher: AnyCaseNodeOrData, context: MatchContextWithoutLookup) => Record<string, AnyCaseNodeOrData>;
export declare const findLookup: (matcherLookup: LookupMap, lookupType: LookupType, uniqueName: string) => AnyCaseNodeOrData | undefined;
