recharts
Version:
React charts
11 lines (10 loc) • 361 B
TypeScript
import * as React from 'react';
import { ReactNode } from 'react';
type RootSurfaceProps = {
children: ReactNode;
title: string | undefined;
desc: string | undefined;
otherAttributes: Record<string, unknown>;
};
export declare const RootSurface: React.ForwardRefExoticComponent<RootSurfaceProps & React.RefAttributes<SVGSVGElement>>;
export {};