import type { LC } from '@use-gpu/live'; import type { Renderable } from './types.d.cts'; import { OITOptions } from '../pass/types.d.cts'; export type OITPassProps = { env: { light: any; }; calls: { oit?: Renderable[]; debug?: Renderable[]; }; oit: OITOptions; }; /** OIT render pass. */ export declare const OITPass: LC;