export declare const join: (...parts: string[]) => string; export declare const basename: (p: string) => string; export declare const first: (p: string) => string; export declare const dirname: (p: string) => string; export declare const extname: (p: string) => string; export declare const basenamenoext: (p: string) => string; /** Safely read `code`/`message` off an unknown thrown value. */ export declare function getErrorInfo(e: unknown): { code?: string; message?: string; };