import type { ButtonController } from "./core/ButtonController"; import type { DeviceControllerOptions } from "./core/types"; import type { TouchController } from "../../src/internal/core/TouchController"; export type ControllersContainer = { buttons: ButtonController; touch: TouchController; }; export declare function createDefaultControllers(baseURL: string, opts: DeviceControllerOptions): ControllersContainer; //# sourceMappingURL=di.d.ts.map