import type { LiveComponent } from '@use-gpu/live'; import type { TextureSource } from '@use-gpu/core'; import type { ShaderModule } from '@use-gpu/shader'; export type EmissiveLightRenderProps = { gBuffer: TextureSource[]; getLight: ShaderModule; }; export declare const EmissiveLightRender: LiveComponent;