import { CanvasProps } from '@react-three/fiber';
import { FC, ReactNode } from 'react';

type Props = {
    children: ReactNode;
    canvasProps?: CanvasProps;
};
declare const CanvasWrapper: FC<Props>;

export { CanvasWrapper };
