import type { StringOrNumber } from '@visactor/vchart'; import React from 'react'; export interface ContainerProps { style?: React.CSSProperties; className?: string; width?: number | string; height?: number | string; id?: StringOrNumber; } export default function withContainer

(Comp: React.ComponentType, name?: string, getProps?: (props: any) => any): React.ForwardRefExoticComponent & React.RefAttributes>;