/** * Representation of the 'MetaDataKeyValuePairStrict' schema. */ export type MetaDataKeyValuePairStrict = { /** * Max Length: 1024. * Min Length: 1. */ key: string; /** * Min Items: 1. */ value: string[]; } & Record; //# sourceMappingURL=meta-data-key-value-pair-strict.d.ts.map