import type { RegistryV3 } from '../schemas/RegistryV3'; import type { MetaV3 } from '../schemas/MetaV3'; import type { PageInfoV3 } from '../schemas/PageInfoV3'; export interface ListRegistriesResponseBodyV3 extends PageInfoV3 { items: RegistryV3[]; meta?: MetaV3; }