import * as React from 'react'; declare const BarTypes: ["functional", "diagram", "calendar"]; export type BarType = typeof BarTypes[number]; export interface BarProps { type?: BarType; title?: string; className?: string; children?: React.ReactNode; style?: any; color?: string; } interface CompoundedComponent extends React.ForwardRefExoticComponent> { } declare const NeoBar: CompoundedComponent; export default NeoBar;