/**
 * Farcaster API V2
 * The Farcaster API allows you to interact with the Farcaster protocol. See the [Neynar docs](https://docs.neynar.com/reference) for more details.
 *
 * The version of the OpenAPI document: 2.26.1
 * Contact: team@neynar.com
 *
 * 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 { CastWithInteractions } from './cast-with-interactions';
import type { Follow } from './follow';
import type { ReactionWithUserInfo } from './reaction-with-user-info';
/**
 *
 * @export
 * @interface Notification
 */
export interface Notification {
    /**
     *
     * @type {string}
     * @memberof Notification
     */
    'object': string;
    /**
     *
     * @type {string}
     * @memberof Notification
     */
    'most_recent_timestamp': string;
    /**
     *
     * @type {string}
     * @memberof Notification
     */
    'type': NotificationTypeEnum;
    /**
     *
     * @type {boolean}
     * @memberof Notification
     */
    'seen': boolean;
    /**
     *
     * @type {Array<Follow>}
     * @memberof Notification
     */
    'follows'?: Array<Follow>;
    /**
     *
     * @type {CastWithInteractions}
     * @memberof Notification
     */
    'cast'?: CastWithInteractions;
    /**
     *
     * @type {Array<ReactionWithUserInfo>}
     * @memberof Notification
     */
    'reactions'?: Array<ReactionWithUserInfo>;
    /**
     * The number of notifications of this(follows, likes, recast) type bundled in a single notification.
     * @type {number}
     * @memberof Notification
     */
    'count'?: number;
}
export declare const NotificationTypeEnum: {
    readonly Follows: "follows";
    readonly Recasts: "recasts";
    readonly Likes: "likes";
    readonly Mention: "mention";
    readonly Reply: "reply";
    readonly Quote: "quote";
};
export type NotificationTypeEnum = typeof NotificationTypeEnum[keyof typeof NotificationTypeEnum];
