import type { LC, PropsWithChildren } from '@use-gpu/live'; import type { VectorLike } from '@use-gpu/core'; import { ScissorMode } from '@use-gpu/workbench'; import { mat4 } from 'gl-matrix'; export type ScissorPlaneProps = PropsWithChildren<{ matrix?: mat4; normal?: VectorLike; offset?: number; channel?: number; bias?: number; mode?: ScissorMode; }>; export declare const ScissorPlane: LC;