/** * Test if a string is a valid npm package name. * Sort of a port of is-valid-npm-name but without the dependencies */ export declare function isNpmPackageName(str: string): boolean; export declare function isAcceptedYear(str: string): boolean; export declare const convertProject: (str: string) => { path: string; name: string; }; export declare const nonEmpty: (name: string) => (val: string) => string; export declare const getUserName: () => string; export declare const getUserEmail: () => string;