import { KeyValueType } from "../KeyValue.type"; export declare type GetMetadataResponse = { id: string; actors: MetadataRegisteredActor[]; extended: KeyValueType; components: MetadataComponent[]; }; declare type MetadataRegisteredActor = { type: string; count: number; }; declare type MetadataComponent = { name: string; type: string; version: string; }; export {};