export default class CustomMessageConfig {
    static CustomMessageContents: ({
        name: string;
        flag: number;
        type: number;
        contentClazz: typeof TestCustomMessageContent;
    } | {
        name: string;
        flag: number;
        type: number;
        contentClazz: typeof TestCustomNotificationMessageContent;
    })[];
    static getMessageContentClazz(type: any): typeof UnsupportMessageContent | typeof TestCustomMessageContent | typeof TestCustomNotificationMessageContent;
    static registerCustomMessages(): void;
}
import TestCustomMessageContent from "./testCustomMessageContent";
import TestCustomNotificationMessageContent from "./testCustomNotificationMessageContent";
import UnsupportMessageContent from "../wfc/messages/unsupportMessageConten";
