import { MyTypes } from "../declarations"; import { Point2D } from "chootils/dist/points2d"; import { CharacterName } from "../types"; export default function miniBubbles(prendyAssets: T_MyTypes["Assets"]): { getDefaultState: (_itemId: T_ItemName, options?: { character?: CharacterName; }) => { isVisible: boolean; isFullyHidden: boolean; text: string; forCharacter: string | null; position: Point2D; }; getDefaultRefs: () => { bubbleRef: any; textRef: any; videoRef: HTMLVideoElement | null; }; startStates: { [x: string]: { isVisible: boolean; isFullyHidden: boolean; text: string; forCharacter: string | null; position: Point2D; }; }; };