import { ForwardRefComponent } from '../helpers/ts-utils'; import * as React from 'react'; import Stats from 'stats-gl'; type StatsOptions = ConstructorParameters[0]; export type StatsGlProps = Partial & { id?: string; clearStatsGlStyle?: boolean; showPanel?: number; className?: string; parent?: React.RefObject; ref?: React.RefObject; }; export declare const StatsGl: ForwardRefComponent; export {};