export declare const serverCommands: (pluginName: string) => {
    caption: {
        save: (captionSaveCommandArguments: import("./caption/types").CaptionSaveCommandArguments) => void;
        addLocale: (captionAddLocaleCommandArguments: string) => void;
    };
    chat: {
        sendPublicChatMessage: (chatSendPublicChatMessageCommandArguments: import("./chat/types").ChatSendMessageCommandArguments) => void;
        sendCustomPublicChatMessage: (chatSendCustomPublicChatMessageCommandArguments: import("./chat/types").ChatSendMessageCommandArguments) => void;
    };
};
