declare module "lodash/fp" { type PropertyName = string | number | symbol interface Dictionary { [index: string]: T } export function last(array: List | null | undefined): T | undefined export function zipObject(props: PropertyName[], values: T[]): Dictionary export function dropRight(n: number, src: List): T[] type List = ArrayLike }