export interface IImage {
    id: string;
    data: {
        name: string;
        location: {
            internal: boolean;
            externalRegistryId: string;
            externalImageTag: string;
        };
        description: string;
        versions: Array<{
            versionString: string;
            storagePath?: string;
            size: number;
            createdAt: number;
        }>;
    };
}
