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