import type { AcrRegistry } from '../schemas/AcrRegistry'; /** * Response containing list of ACR registries */ export interface AcrRegistriesResponse { /** * List of ACR registries */ registries?: AcrRegistry[]; }