import { Deferred } from '@vunk/shared/promise'; import { Application } from 'pixi.js'; export declare function initPixiApp(): { application: Application; context: { whenDef: Deferred>; when: () => Promise>; }; }; export declare function usePixiApp(): { application: Application; context: { whenDef: Deferred; when: () => Promise; }; };