/** * Representation of the 'KeyValueListPair' schema. */ export type KeyValueListPair = { /** * Max Length: 1024. */ key: string; value: string[]; } & Record; //# sourceMappingURL=key-value-list-pair.d.ts.map