import * as React from 'react'; import { CSSProperties, ReactNode, Ref } from 'react'; import { ExternalMouseEvents } from './types'; type Nullable = { [P in keyof T]: T[P] | undefined; }; export type RechartsWrapperProps = Nullable & { children: ReactNode; width: number; height: number; className?: string; style?: CSSProperties; ref?: Ref; }; export declare const RechartsWrapper: React.ForwardRefExoticComponent & React.RefAttributes>; export {};