/**
 * Copyright(c) Microsoft Corporation.All rights reserved.
 * Licensed under the MIT License.
 */
/**
 * Represents a Fact.
 */
export interface Fact {
    /** The key of the fact. */
    key: string;
    /** The value of the fact. */
    value: string;
}
