/// <reference types="react" />
import { Props as HiProps } from './components/molecules/Histogram';
import { Props as PiProps } from './components/molecules/Pie';
import { Props as StProps } from './components/molecules/StackedBar';
import { Props as TrProps } from './components/molecules/Treemap';
export declare type HiProps = HiProps;
export declare type PiProps = PiProps;
export declare type StProps = StProps;
export declare type TrProps = TrProps;
declare const _default: {
    Histogram: (props: HiProps) => JSX.Element;
    Pie: (props: PiProps) => JSX.Element;
    Treemap: (props: TrProps) => JSX.Element;
    StackedBar: (props: StProps) => JSX.Element;
};
export default _default;
