export declare const logNote: (note: string) => void; export declare const logError: (err: unknown) => void; export declare const throwError: (text: string) => void; export declare const isExistent: (path: string) => boolean; export declare const isFile: (path: string) => boolean; export declare const isDirectory: (path: string) => boolean;