declare const _default: {1/**2* Enables debug messages to content logs.3*/4debug: boolean;5/**6* What character(s) to use to define the beginning of custom commands.7*/8commandPrefix: string;9/**10* Whether the addon should use simpler methods to run operations faster.11* This comes with the drawback of more limited capabilities.12*/13performanceMode: boolean;14/**15* How many operations can be recorded in a player's history.16*/17maxHistorySize: number;18/**19* Whether a player's outlines are drawn by default. Outlines include selections, brush influence and paste location20*/21drawOutlines: boolean | "local";22/**23* How long (in ticks) until a previously active builder's session gets deleted.24* This includes their undo/redo history.25*/26ticksToDeleteSession: number;27/**28* Whether commands executed by items print their messages to the action bar or the chat.29*/30printToActionBar: boolean;31/**32* The default item used for marking selection wand.33*/34wandItem: string;35/**36* The default item used for the navigation wand.37*/38navWandItem: string;39/**40* The distance the navigation wand, among other tools and commands, traces for a block of interest.41*/42traceDistance: number;43/**44* The maximum brush radius allowed.45*/46maxBrushRadius: number;47/**48* Whether blocks broken by the super pickaxe in "single" mode drop.49*/50superPickaxeDrop: boolean;51/**52* Whether blocks broken by the super pickaxe in "area" and "recursive" mode drop.53*/54superPickaxeManyDrop: boolean;55/**56* The default amount of blocks that can be "potentially" affected within a single operation.57*/58defaultChangeLimit: number;59/**60* The absolute change limit that can be set from the ;limit command.61* Bypassed with "worldedit.limit.unlimited" permission.62*/63maxChangeLimit: number;64/**65* How long an async operation will run until giving Minecraft a chance to run.66* The higher the value, the faster the operation, but the slower Minecraft takes to run.67*/68asyncTimeBudget: number;69};70export default _default;7172/**73* WorldEdit version (do not change)74*/75export declare const VERSION: string;767778