import { Gender } from "../../gender/gender"; import WorldLocation from "../../worldLocation/WorldLocation"; export declare const findItem: (gender: Gender) => string; export declare const hasAItem: (gender: Gender) => string; export declare const magicalMark: (gender: Gender) => string; export declare const deliverItem: (gender: Gender, location: WorldLocation) => string; export declare const destroyItem: (gender: Gender, location: WorldLocation) => string; export declare const stealItem: (gender: Gender, location: WorldLocation) => string;