import React from 'react'; interface Props { value?: number; limit?: number; color?: string; className?: string; } type NativeAttrs = Omit, keyof Props>; export type CapacityProps = Props & NativeAttrs; declare const Capacity: React.ForwardRefExoticComponent>; export default Capacity;