export interface IFibonacciOptions {
    cache?: boolean;
}
export default function fibonacci(value: number, options?: IFibonacciOptions): number;
