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