import { CharacterName, DollName } from "../../types";
import { getUsefulStoryStuff } from "./prendyRuleMakers";
type TouchRulesOptions = Partial<{
    [P_DollName in DollName]: (usefulStuff: ReturnType<typeof getUsefulStoryStuff>) => void;
}>;
export declare function makeTouchEffects(callbacksMap: TouchRulesOptions, options?: {
    characterName?: CharacterName;
    distanceType?: "touch" | "talk" | "see";
    whenLeave?: boolean;
}): Record<"whenInRangeChangesToCheckTouch", import("repond").Effect>;
export {};
