/**
 * AskNews API
 * AskNews API [![status](https://status.asknews.app/api/badge/2/status?style=for-the-badge)](https://status.asknews.app/status/prod)
 *
 * The version of the OpenAPI document: 0.24.66
 * Contact: contact@emergentmethods.ai
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import type { Sentiment } from './Sentiment';
/**
 *
 * @export
 * @interface RedditPerspective
 */
export interface RedditPerspective {
    /**
     *
     * @type {Sentiment}
     * @memberof RedditPerspective
     */
    sentiment: Sentiment;
    /**
     *
     * @type {boolean}
     * @memberof RedditPerspective
     */
    relevant: boolean;
    /**
     *
     * @type {string}
     * @memberof RedditPerspective
     */
    summary: string;
}
/**
 * Check if a given object implements the RedditPerspective interface.
 */
export declare function instanceOfRedditPerspective(value: object): value is RedditPerspective;
export declare function RedditPerspectiveFromJSON(json: any): RedditPerspective;
export declare function RedditPerspectiveFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedditPerspective;
export declare function RedditPerspectiveToJSON(json: any): RedditPerspective;
export declare function RedditPerspectiveToJSONTyped(value?: RedditPerspective | null, ignoreDiscriminator?: boolean): any;
