export interface ParsedImageReference {
    registry: string;
    repository: string;
    tag: string;
}
export declare class ImageReference {
    private static readonly IMAGE_TAG_REGEX;
    static validateImageTag(tag: string, originalValue: string): string;
    static parseImageReference(imageReference: string): ParsedImageReference;
}
