import type { LC } from '@use-gpu/live'; import { OutlineOptions } from '../pass/types.d.cts'; export type OutlinePassProps = { env: { light: any; }; facets: boolean; outline: OutlineOptions; }; /** Outline render pass. Renders outer/inner edge mask to offscreen target, then applies variable sized outlines via convolution. */ export declare const OutlinePass: LC;