/// export interface ICostFactorProps { min: number; max?: number; } export declare const CostFactor: ({ min, max }: ICostFactorProps) => JSX.Element;