import { FlexboxProps } from '@lobehub/ui'; import { ReactNode } from 'react'; export interface DeltaBarProps extends FlexboxProps { bgColors?: string; color?: string; isIncreasePositive?: boolean; showAnimation?: boolean; size?: number; tooltip?: ReactNode; value: number; } declare const DeltaBar: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default DeltaBar;