export declare class OracleUi { static getNewTableColumns(): any[]; static getNewColumn(suffix: any): { column_name: string; dt: string; dtx: string; ct: string; nrqd: boolean; rqd: boolean; ck: boolean; pk: boolean; un: boolean; ai: boolean; cdf: any; clen: number; np: any; ns: any; dtxp: string; dtxs: string; altered: number; uidt: string; uip: string; uicn: string; }; static getDefaultLengthForDatatype(type: any): string; static getDefaultLengthIsDisabled(type: any): any; static getDefaultValueForDatatype(type: any): string; static getDefaultScaleForDatatype(type: any): any; static colPropAIDisabled(col: any, columns: any): boolean; static colPropUNDisabled(_col: any): boolean; static onCheckboxChangeAI(col: any): void; static showScale(_columnObj: any): boolean; static removeUnsigned(columns: any): void; static columnEditable(colObj: any): boolean; static extractFunctionName(query: any): any; static extractProcedureName(query: any): any; static splitQueries(query: any): any; static onCheckboxChangeAU(col: any): void; /** * if sql statement is SELECT - it limits to a number * @param args * @returns {string|*} */ sanitiseQuery(args: any): any; getColumnsFromJson(json: any, tn: any): any[]; static colPropAuDisabled(_col: any): boolean; static getAbstractType(col: any): any; static getUIType(col: any): any; static getDataTypeForUiType(col: any): any; static getUnsupportedFnList(): any[]; } /** * @copyright Copyright (c) 2021, Xgene Cloud Ltd * * @author Naveen MR * @author Pranav C Balan * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */