import { ValueTypeToParse } from "../core/utils";
export interface DependencyListSimpleModel {
    index: number;
    value: ValueTypeToParse | Array<ValueTypeToParse>;
    reference: any;
}
export declare const DEPENDENCY_LIST_SIMPLE_COLUMNS: {
    INDEX: string;
    VALUE: string;
    REFERENCE: (tableName: string, keyColumn: string) => string;
};
