/**
* Calculates the value of the row of Fibonnaci
* @param {number} index The position of the number in the row of Fibonnaci
* @returns {number} The value of the row of Fibonnaci
*/declareconstfibonacci: (index: number) =>bigint | undefined;
exportdefault fibonacci;