import { RefObject } from 'react'; import * as PIXI from 'pixi.js-legacy'; /** * set up for the PIXI.js api * * This hook is used by the Garden and is not intended to be used or implemented * outside the Garden component. */ declare const usePixiApp: (canvas: RefObject | null, container: RefObject | null, backgroundColor: number) => { pixiApp: import("react").MutableRefObject; }; export default usePixiApp;