/**
 * AskNews API
 * AskNews API
 *
 * The version of the OpenAPI document: 0.18.6
 * 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.
 */
/**
 *
 * @export
 * @interface RedditComment
 */
export interface RedditComment {
    /**
     *
     * @type {string}
     * @memberof RedditComment
     */
    author: string;
    /**
     *
     * @type {string}
     * @memberof RedditComment
     */
    body: string;
    /**
     *
     * @type {Date}
     * @memberof RedditComment
     */
    date: Date;
    /**
     *
     * @type {number}
     * @memberof RedditComment
     */
    upvotes: number;
}
/**
 * Check if a given object implements the RedditComment interface.
 */
export declare function instanceOfRedditComment(value: object): boolean;
export declare function RedditCommentFromJSON(json: any): RedditComment;
export declare function RedditCommentFromJSONTyped(json: any, ignoreDiscriminator: boolean): RedditComment;
export declare function RedditCommentToJSON(value?: RedditComment | null): any;
