import type { LiveComponent, PropsWithChildren } from '@use-gpu/live'; export type PickingProps = PropsWithChildren<{ pickingFormat?: GPUTextureFormat; pickingColor?: GPUColor; depthStencilFormat?: GPUTextureFormat; resolution?: number; }>; /** Global picking provider. Provides a screen-sized render target that contains object ID + item index. */ export declare const PickingTarget: LiveComponent;