import { BaseContext, CommentThread } from '../../types';
/**
 * Event fired when a Comment has changed
 */
export interface CommentChangedInfo extends BaseContext {
    /**
     * All current Comment Threads
     */
    commentThreads: CommentThread[];
}
