import type { LC, PropsWithChildren } from '@use-gpu/live'; import type { PassFlags, PassResources } from '../pass/types.d.cts'; export type FullScreenRendererOptions = Pick; export type FullScreenRendererProps = PropsWithChildren<{ resources: PassResources; options: FullScreenRendererOptions; }>; /** Simplified full-screen-only renderer that has no rendering variants or sub-passes. */ export declare const FullScreenRenderer: LC;