import { Familiar } from "kolmafia"; /** * Determines whether the player has the Comma Chameleon in their * terrarium * * @returns Whether the player has a Comma Chameleon */ export declare function have(): boolean; /** * Transforms Comma Chameleon into the familiar of choice if you already have the appropriate familiar equipment * Will not transform if you do not * @param fam determines what to transform into * @returns Whether Comma has been successfully transformed */ export declare function transform(fam: Familiar): boolean; /** * @returns The current familiar that Comma is behaving as */ export declare function currentFamiliar(): Familiar | null;