import React from 'react'; export interface CapacityItemProps { type: "Projects" | "People" | "Estimates"; item: any | { type: string; location: string; estimate: any; }; updateCapacityItem: (key: string, value: any) => void; removeCapacityItem: () => void; } export declare const CapacityItem: React.FC;