import { FunctionComponent } from 'react'; export interface CostProps { costFactor: number; } /** * Display the cost over the help sheet cells. */ declare const Cost: FunctionComponent; export default Cost;