import { ScriptAction, ScriptedFlushable } from "./Flushable"; /** * Support for ScriptedFlushable operations */ export declare abstract class AbstractScriptedFlushable implements ScriptedFlushable { private actions; recordAction(action: ScriptAction): this; readonly dirty: boolean; flush(): Promise; }