import type { RpgMakerDbEntry } from "../types/rpgmaker.js"; type Animation = RpgMakerDbEntry; declare function getAnimations(projectPath: string): Promise; declare function getAnimation(projectPath: string, id: number): Promise; declare function updateAnimation(projectPath: string, id: number, fields: Partial): Promise; declare function deleteAnimation(projectPath: string, id: number): Promise; export { getAnimations, getAnimation, updateAnimation, deleteAnimation };