import * as PIXI from 'pixi.js-legacy'; /** * Handles Text in items and header. * This is all text that are written on each item in the garden and the header. * * This hook is used by the Garden and is not intended to be used or implemented * outside the Garden component. */ declare const useTextNode: () => { createTextNode: (text: string, color: number) => PIXI.Sprite; }; export default useTextNode;