export interface InsertRequest {
    model: string;
    instances: {
        [key: string]: any;
    }[];
}
export interface InsertModel {
    [reference: string]: string[][];
}
export interface InstanceAttribute {
    [attributeName: string]: string[];
}
