/** * A simple key / value pair interface. */ interface KeyValuePair { key: string; value: string; } export default KeyValuePair;