import interfaces from "../interfaces/interfaces";
declare class KeyValuePair<T> implements interfaces.KeyValuePair<T> {
    serviceIdentifier: interfaces.ServiceIdentifier<any>;
    value: Array<T>;
    guid: string;
    constructor(serviceIdentifier: interfaces.ServiceIdentifier<any>, value: T);
}
export default KeyValuePair;
