A simple interface for a key value pair with string as the key

interface IStringValuePair {
    [key: string]: any;
}

Indexable

[key: string]: any