export declare const isLink: (url?: string) => boolean; export declare const parsePath: (path: string) => { path: string; hash: string; } | { path: string; hash: null; }; export declare const toUnixPath: (path: string) => string;