// Type definitions for NaturalSort // Project: https://github.com/studio-b12/natural-sort // Definitions by: Antonio Morales // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare module "naturalSort" { function naturalSort(a: T, b: T): number; export = naturalSort; }