export declare const pathRegEx: RegExp; export interface IpldPath { namespace: string; cidOrFqdn: string; rest: string; address: string; } export declare function parseIpldPath(str: string): IpldPath | null;