/** * @see https://docs.rs/bevy/latest/bevy/render/struct.RenderPlugin.html */ import { SystemType } from '@lastolivegames/becsy'; import { Plugin, type PluginWithConfig } from './types'; export interface RendererPluginOptions { setupDeviceSystemCtor?: SystemType; rendererSystemCtor?: SystemType; } export declare const RendererPlugin: PluginWithConfig; export declare const DefaultRendererPlugin: Plugin;