import React, { ForwardRefExoticComponent } from 'react'; import { Vector2 } from 'three'; import { Effect, BlendFunction } from 'postprocessing'; declare type DefaultProps = Partial<{ blendFunction: BlendFunction; opacity: number; }>; export declare const wrapEffect: Effect>(effectImpl: T, defaultBlendMode?: BlendFunction) => React.ForwardRefExoticComponent[0] & Partial<{ blendFunction: BlendFunction; opacity: number; }>>; export declare const useVector2: (props: any, key: string) => Vector2; export declare const isWebGL2Available: () => boolean; export {};