import { ABAPObject, DataReference, FieldSymbol, HashedTable, Structure, Table } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
export interface IInsertInternalOptions {
    index?: INumeric;
    initial?: boolean;
    data?: INumeric | ICharacter | Structure | ABAPObject | Table | FieldSymbol | string;
    table: Table | HashedTable | FieldSymbol;
    referenceInto?: DataReference;
    assigning?: FieldSymbol;
    noClone?: boolean;
    lines?: boolean;
}
export declare function insertInternal(options: IInsertInternalOptions): void;
