// from https://github.com/styleguidist/react-styleguidist/blob/b409045/src/typings/dependencies/listify.ts // license MIT declare module "listify" { interface ListifyOptions { finalWord: string; } function listify(list: any[], opt?: ListifyOptions): string; export = listify; }