import { JsonCustomConvert } from "json2typescript"; /** * @export * @enum {string} */ export declare enum CommentType { Internal = 1, Customer = 2, POAAttachment = 3, NoticeVoucher = 4 } export declare class CommentTypeConverter implements JsonCustomConvert { serialize(data: CommentType): CommentType; deserialize(enumType: string): CommentType; }