import type { LC, PropsWithChildren } from '@use-gpu/live'; import { ScissorMode } from '@use-gpu/workbench'; import { mat4 } from 'gl-matrix'; export type ScissorBoxProps = PropsWithChildren<{ matrix?: mat4; range?: [number, number][]; bias?: number; mode?: ScissorMode; }>; export declare const ScissorBox: LC;