import { DataReference, FieldSymbol, Table, TableRowType } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export interface IAppendOptions {
    source: TableRowType | FieldSymbol | Table;
    target: Table | FieldSymbol | undefined;
    lines?: boolean;
    assigning?: FieldSymbol;
    referenceInto?: DataReference;
    from?: ICharacter | INumeric;
    to?: ICharacter | INumeric;
}
export declare function append(input: IAppendOptions): void;
