declare module "abs" { /** * Compute the absolute path of an input. * @param input The input path. */ function Abs(input: string): string; export default Abs; }