import type { MetadataItem } from './metadata-item.js'; /** * Representation of the 'MetadataResponse' schema. */ export type MetadataResponse = { /** * List of metadata after updates. * Default: []. */ current_metadata?: MetadataItem[] | null; } & Record; //# sourceMappingURL=metadata-response.d.ts.map