export declare type TableUpdateTransactionRequest = {
    concreteType: 'org.sagebionetworks.repo.model.table.TableUpdateTransactionRequest';
    entityId: string;
    changes: AppendableRowSetRequest[];
};
export declare type AppendableRowSetRequest = {
    concreteType: 'org.sagebionetworks.repo.model.table.AppendableRowSetRequest';
    entityId: string;
    toAppend: PartialRowSet;
};
export declare type PartialRowSet = {
    concreteType: 'org.sagebionetworks.repo.model.table.PartialRowSet';
    tableId: string;
    rows: PartialRow[];
};
export declare type PartialRow = {
    rowId: number;
    values: KeyValuePair[];
    etag?: string;
};
export declare type KeyValuePair = {
    key: string;
    value: string;
};
