import { Entity } from '@microsoft/agents-activity';
/**
 * Represents a Word (WPX) comment notification entity.
 */
export interface WpxComment extends Entity {
    /**
     * The type of the entity. Always 'WpxComment'.
     */
    type: 'WpxComment';
    /**
     * The OData ID of the comment.
     */
    odataId?: string;
    /**
     * The ID of the document.
     */
    documentId?: string;
    /**
     * The ID of the initiating comment.
     */
    initiatingCommentId?: string;
    /**
     * The ID of the subject comment.
     */
    subjectCommentId?: string;
}
/**
 * The entity type name for WPX comments.
 */
export declare const WPX_COMMENT_TYPE = "WpxComment";
/**
 * Type guard to check if an entity is a WpxComment.
 */
export declare function isWpxComment(entity: Entity): entity is WpxComment;
/**
 * Factory function to create a WpxComment entity.
 */
export declare function createWpxComment(odataId?: string, documentId?: string, initiatingCommentId?: string, subjectCommentId?: string): WpxComment;
//# sourceMappingURL=wpx-comment.d.ts.map