import { Monster } from "kolmafia"; export declare class Copier { readonly couldCopy: () => boolean; readonly prepare: (() => boolean) | null; readonly canCopy: () => boolean; readonly copiedMonster: () => Monster | null; readonly fightCopy: (() => boolean) | null; constructor(couldCopy: () => boolean, prepare: (() => boolean) | null, canCopy: () => boolean, copiedMonster: () => Monster | null, fightCopy?: () => boolean); }