import { Gender } from "../../gender/gender"; import Monster from "../../monster/monster"; import WorldLocation from "../../worldLocation/WorldLocation"; interface IProps { gender: Gender; location?: WorldLocation; monster?: Monster; npcName?: string; } export default function getRandomNpcPlotHook({ gender, location, monster, npcName, }: IProps): string; export declare function getRandomNpcPlotHookSample(samples: number, props: IProps): string[]; export {};