/** * This enum defines the field names used in the Custom Terms feature table. */ export declare enum CustomTermsFeatureTableField { OBJECT_ID = "OBJECTID", TERM = "term", CATEGORY = "category", STATUS = "status", TITLE = "item_title", ITEM_ID = "item_id", SNIPPET = "item_snippet", NOTE = "note", CREATION_DATE = "CreationDate", CREATOR = "Creator", EDIT_DATE = "EditDate", EDITOR = "Editor" } /** * Gets the URL for the Custom Terms feature table based on the service tier. * @returns the URL for the Custom Terms feature table. */ export declare const getCustomTermsFeatureTableUrl: () => string; /** * Gets the URL for the itemInfo endpoint for the Custom Terms feature table. * @returns The URL for the itemInfo endpoint for the Custom Terms feature table. */ export declare const getCustomTermsFeatureTableItemInfoUrl: () => string;