import { FC, HTMLAttributes, ReactChild } from 'react'; export * from './common'; export * from './line-chart'; export * from './theming'; export interface Props extends HTMLAttributes { children?: ReactChild; } export declare const Thing: FC;