/// <reference types="node" resolution-mode="require"/>
import type { MemFsEditor } from '../index.js';
export type AppendOptions = {
    create?: boolean;
    trimEnd?: boolean;
    separator?: string;
};
export default function append(this: MemFsEditor, to: string, contents: string | Buffer, options?: AppendOptions): void;
