import { ScriptCommand } from '../ScriptCommand.js';
/**
 * @see https://wiki.arx-libertatis.org/Script:loadanim
 */
export declare class LoadAnim extends ScriptCommand {
    animation: string;
    filename: string;
    constructor(animation: string, filename: string);
    toString(): string;
}
