import type { CommonEventParams, EventCommand, RpgMakerDbEntry } from "../types/rpgmaker.js"; interface CommonEvent extends RpgMakerDbEntry { trigger: number; switchId: number; list: EventCommand[]; } declare function getCommonEvents(projectPath: string): Promise; declare function createCommonEvent(projectPath: string, params: CommonEventParams): Promise; declare function updateCommonEvent(projectPath: string, id: number, fields: Partial): Promise; declare function addCommonEventCommand(projectPath: string, id: number, command: EventCommand): Promise; export { getCommonEvents, createCommonEvent, updateCommonEvent, addCommonEventCommand };