interface VersionInfo {
    tag?: string;
    digest?: string;
}
declare class ImageReference {
    domain?: string;
    path: string;
    tag?: string;
    digest?: string;
    constructor(domain: string | undefined, path: string, version?: VersionInfo);
    readonly image: string;
    toString(): string;
    static fromString(s: string): ImageReference;
}
export { ImageReference, };
