import { type BuddyMode, type BuddyShape } from '../lib/constants'; interface BuddyCreatureProps { shape: BuddyShape; mode: BuddyMode; eyeDx: number; eyeDy: number; isTalking: boolean; } export declare function BuddyCreature({ shape, mode, eyeDx, eyeDy, isTalking }: BuddyCreatureProps): import("react/jsx-runtime").JSX.Element; export {};