/** * Extract the scheme from an artifact URI. */ export declare function getArtifactUriScheme(uri: string): string; /** * Whether an artifact URI refers to a location on the local filesystem. */ export declare function isLocalArtifactUri(uri: string): boolean; /** * Convert a local artifact URI to an filesystem path. */ export declare function artifactUriToLocalPath(uri: string): string; /** * Convert a local artifact URI to a filesystem path, requiring it to be absolute. */ export declare function toAbsoluteLocalPath(uri: string): string;