import type { LC } from '@use-gpu/live'; import type { OverscanOptions } from '../../pass/types.d.cts'; export type NormalBufferProps = { facets?: boolean; resolution?: number; overscan?: OverscanOptions; }; export declare const NORMAL_DEPTH_FORMAT = "depth32float"; export declare const NORMAL_RENDER_FORMAT_THIN = "rg8uint"; export declare const NORMAL_RENDER_FORMAT_FAT = "rgba8uint"; export declare const NormalBuffer: LC;