export declare class ItemComment {
    createdOn: string;
    createdBy: string;
    createdByUserID: number;
    createdByServerUserID: number;
    commentID: number;
    commentText: string;
    pinned: boolean;
    emailAddress: string;
}
export declare class ItemComments {
    items: ItemComment[];
    totalCount: number;
}
