export declare const FILE_PROTO = "file://"; export declare const isURL: (href: string | undefined) => href is `${string}:${string}`; export declare const isLocalFileURL: (href: string | undefined) => href is `file://${string}`; export declare const joinPath: (...path: (string | undefined | null)[]) => string;