import { WorldArgs } from "./types"; export declare const createDeviceRenderSystem: ({ world }: WorldArgs) => { update: () => void; stop: () => void; }; export declare type iDeviceRenderSystem = ReturnType;