/** * Future Value (FV) is the value of an asset or cash at a specified date in the future that is equivalent in value to a specified sum today * * @see http://www.investopedia.com/terms/f/futurevalue.asp * @param rate * @param cf0 * @param numOfPeriod * @returns */ export declare function FV(rate: number, cf0: number, numOfPeriod: number): number;