declare const pathConvertor: (dest: string, suffix: string) => string; /** * Check if all the files exists in the current directory and return the missing ones * @param files The list of the files * @returns The missing files */ declare const missingFiles: (files: string[]) => string[]; /** * Capitalize the first letter of the string * @param string * @returns */ declare const firstCharToUpper: (string: string) => string; /** * Lowercase the first letter of the string * @param string * @returns */ declare const firstCharToLower: (string: string) => string; declare const pluralize: (string: string) => string; declare const generateJWTSecret: () => string; export { pathConvertor, missingFiles, firstCharToUpper, firstCharToLower, pluralize, generateJWTSecret, };