import { CallExpressionShape } from '@servicenow/sdk-build-core'; export declare const COLUMN_TYPE_TO_API: Record; export declare const COLUMN_API_TO_TYPE: { [k: string]: string; }; export declare const DEFAULT_COLUMN_CALCULATION = "(function calculatedFieldValue(current) {\n\n\t// Add your code here\n\treturn ''; // return the calculated value\n\n})(current);"; export declare function addFieldsToColumn(fields: { name: string; table: string; display: boolean; }, column: CallExpressionShape): CallExpressionShape; export declare function getDefaultMaxLength(columnType: string | undefined): number;