import { Table } from "../types";
import { INumeric } from "../types/_numeric";
export interface IModifyInternalOptions {
    index: INumeric;
    from: any;
    where?: (i: any) => boolean;
    transporting?: string[];
}
export declare function modifyInternal(table: Table, options: IModifyInternalOptions): void;
