import * as React from 'react'; import { Texture } from 'three'; export declare function useMatcapTexture(id?: number | string, format?: number, onLoad?: (texture: Texture | Texture[]) => void): [Texture, string, number]; export declare const MatcapTexture: ({ children, id, format, onLoad, }: { children?: (texture: ReturnType) => React.ReactNode; id?: Parameters[0]; format?: Parameters[1]; onLoad?: Parameters[2]; }) => React.JSX.Element;