export declare const HighlightType: {
  readonly STANDARD: "STANDARD";
  readonly THESAURUS_SYNONYM: "THESAURUS_SYNONYM";
};
export type HighlightType = (typeof HighlightType)[keyof typeof HighlightType];
export declare const AdditionalResultAttributeValueType: {
  readonly TEXT_WITH_HIGHLIGHTS_VALUE: "TEXT_WITH_HIGHLIGHTS_VALUE";
};
export type AdditionalResultAttributeValueType =
  (typeof AdditionalResultAttributeValueType)[keyof typeof AdditionalResultAttributeValueType];
export declare const AlfrescoEntity: {
  readonly blog: "blog";
  readonly documentLibrary: "documentLibrary";
  readonly wiki: "wiki";
};
export type AlfrescoEntity =
  (typeof AlfrescoEntity)[keyof typeof AlfrescoEntity];
export declare const EntityType: {
  readonly GROUP: "GROUP";
  readonly USER: "USER";
};
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
export declare const Persona: {
  readonly OWNER: "OWNER";
  readonly VIEWER: "VIEWER";
};
export type Persona = (typeof Persona)[keyof typeof Persona];
export declare const AttributeSuggestionsMode: {
  readonly ACTIVE: "ACTIVE";
  readonly INACTIVE: "INACTIVE";
};
export type AttributeSuggestionsMode =
  (typeof AttributeSuggestionsMode)[keyof typeof AttributeSuggestionsMode];
export declare const ErrorCode: {
  readonly INTERNAL_ERROR: "InternalError";
  readonly INVALID_REQUEST: "InvalidRequest";
};
export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
export declare const DocumentStatus: {
  readonly FAILED: "FAILED";
  readonly INDEXED: "INDEXED";
  readonly NOT_FOUND: "NOT_FOUND";
  readonly PROCESSING: "PROCESSING";
  readonly UPDATED: "UPDATED";
  readonly UPDATE_FAILED: "UPDATE_FAILED";
};
export type DocumentStatus =
  (typeof DocumentStatus)[keyof typeof DocumentStatus];
export declare const ConditionOperator: {
  readonly BeginsWith: "BeginsWith";
  readonly Contains: "Contains";
  readonly Equals: "Equals";
  readonly Exists: "Exists";
  readonly GreaterThan: "GreaterThan";
  readonly GreaterThanOrEquals: "GreaterThanOrEquals";
  readonly LessThan: "LessThan";
  readonly LessThanOrEquals: "LessThanOrEquals";
  readonly NotContains: "NotContains";
  readonly NotEquals: "NotEquals";
  readonly NotExists: "NotExists";
};
export type ConditionOperator =
  (typeof ConditionOperator)[keyof typeof ConditionOperator];
export declare const ReadAccessType: {
  readonly ALLOW: "ALLOW";
  readonly DENY: "DENY";
};
export type ReadAccessType =
  (typeof ReadAccessType)[keyof typeof ReadAccessType];
export declare const PrincipalType: {
  readonly GROUP: "GROUP";
  readonly USER: "USER";
};
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
export declare const ContentType: {
  readonly CSV: "CSV";
  readonly HTML: "HTML";
  readonly JSON: "JSON";
  readonly MD: "MD";
  readonly MS_EXCEL: "MS_EXCEL";
  readonly MS_WORD: "MS_WORD";
  readonly PDF: "PDF";
  readonly PLAIN_TEXT: "PLAIN_TEXT";
  readonly PPT: "PPT";
  readonly RTF: "RTF";
  readonly XML: "XML";
  readonly XSLT: "XSLT";
};
export type ContentType = (typeof ContentType)[keyof typeof ContentType];
export declare const ConfluenceAttachmentFieldName: {
  readonly AUTHOR: "AUTHOR";
  readonly CONTENT_TYPE: "CONTENT_TYPE";
  readonly CREATED_DATE: "CREATED_DATE";
  readonly DISPLAY_URL: "DISPLAY_URL";
  readonly FILE_SIZE: "FILE_SIZE";
  readonly ITEM_TYPE: "ITEM_TYPE";
  readonly PARENT_ID: "PARENT_ID";
  readonly SPACE_KEY: "SPACE_KEY";
  readonly SPACE_NAME: "SPACE_NAME";
  readonly URL: "URL";
  readonly VERSION: "VERSION";
};
export type ConfluenceAttachmentFieldName =
  (typeof ConfluenceAttachmentFieldName)[keyof typeof ConfluenceAttachmentFieldName];
export declare const ConfluenceAuthenticationType: {
  readonly HTTP_BASIC: "HTTP_BASIC";
  readonly PAT: "PAT";
};
export type ConfluenceAuthenticationType =
  (typeof ConfluenceAuthenticationType)[keyof typeof ConfluenceAuthenticationType];
export declare const ConfluenceBlogFieldName: {
  readonly AUTHOR: "AUTHOR";
  readonly DISPLAY_URL: "DISPLAY_URL";
  readonly ITEM_TYPE: "ITEM_TYPE";
  readonly LABELS: "LABELS";
  readonly PUBLISH_DATE: "PUBLISH_DATE";
  readonly SPACE_KEY: "SPACE_KEY";
  readonly SPACE_NAME: "SPACE_NAME";
  readonly URL: "URL";
  readonly VERSION: "VERSION";
};
export type ConfluenceBlogFieldName =
  (typeof ConfluenceBlogFieldName)[keyof typeof ConfluenceBlogFieldName];
export declare const ConfluencePageFieldName: {
  readonly AUTHOR: "AUTHOR";
  readonly CONTENT_STATUS: "CONTENT_STATUS";
  readonly CREATED_DATE: "CREATED_DATE";
  readonly DISPLAY_URL: "DISPLAY_URL";
  readonly ITEM_TYPE: "ITEM_TYPE";
  readonly LABELS: "LABELS";
  readonly MODIFIED_DATE: "MODIFIED_DATE";
  readonly PARENT_ID: "PARENT_ID";
  readonly SPACE_KEY: "SPACE_KEY";
  readonly SPACE_NAME: "SPACE_NAME";
  readonly URL: "URL";
  readonly VERSION: "VERSION";
};
export type ConfluencePageFieldName =
  (typeof ConfluencePageFieldName)[keyof typeof ConfluencePageFieldName];
export declare const ConfluenceSpaceFieldName: {
  readonly DISPLAY_URL: "DISPLAY_URL";
  readonly ITEM_TYPE: "ITEM_TYPE";
  readonly SPACE_KEY: "SPACE_KEY";
  readonly URL: "URL";
};
export type ConfluenceSpaceFieldName =
  (typeof ConfluenceSpaceFieldName)[keyof typeof ConfluenceSpaceFieldName];
export declare const ConfluenceVersion: {
  readonly CLOUD: "CLOUD";
  readonly SERVER: "SERVER";
};
export type ConfluenceVersion =
  (typeof ConfluenceVersion)[keyof typeof ConfluenceVersion];
export declare const DatabaseEngineType: {
  readonly RDS_AURORA_MYSQL: "RDS_AURORA_MYSQL";
  readonly RDS_AURORA_POSTGRESQL: "RDS_AURORA_POSTGRESQL";
  readonly RDS_MYSQL: "RDS_MYSQL";
  readonly RDS_POSTGRESQL: "RDS_POSTGRESQL";
};
export type DatabaseEngineType =
  (typeof DatabaseEngineType)[keyof typeof DatabaseEngineType];
export declare const QueryIdentifiersEnclosingOption: {
  readonly DOUBLE_QUOTES: "DOUBLE_QUOTES";
  readonly NONE: "NONE";
};
export type QueryIdentifiersEnclosingOption =
  (typeof QueryIdentifiersEnclosingOption)[keyof typeof QueryIdentifiersEnclosingOption];
export declare const FsxFileSystemType: {
  readonly WINDOWS: "WINDOWS";
};
export type FsxFileSystemType =
  (typeof FsxFileSystemType)[keyof typeof FsxFileSystemType];
export declare const Type: {
  readonly ON_PREMISE: "ON_PREMISE";
  readonly SAAS: "SAAS";
};
export type Type = (typeof Type)[keyof typeof Type];
export declare const IssueSubEntity: {
  readonly ATTACHMENTS: "ATTACHMENTS";
  readonly COMMENTS: "COMMENTS";
  readonly WORKLOGS: "WORKLOGS";
};
export type IssueSubEntity =
  (typeof IssueSubEntity)[keyof typeof IssueSubEntity];
export declare const SalesforceChatterFeedIncludeFilterType: {
  readonly ACTIVE_USER: "ACTIVE_USER";
  readonly STANDARD_USER: "STANDARD_USER";
};
export type SalesforceChatterFeedIncludeFilterType =
  (typeof SalesforceChatterFeedIncludeFilterType)[keyof typeof SalesforceChatterFeedIncludeFilterType];
export declare const SalesforceKnowledgeArticleState: {
  readonly ARCHIVED: "ARCHIVED";
  readonly DRAFT: "DRAFT";
  readonly PUBLISHED: "PUBLISHED";
};
export type SalesforceKnowledgeArticleState =
  (typeof SalesforceKnowledgeArticleState)[keyof typeof SalesforceKnowledgeArticleState];
export declare const SalesforceStandardObjectName: {
  readonly ACCOUNT: "ACCOUNT";
  readonly CAMPAIGN: "CAMPAIGN";
  readonly CASE: "CASE";
  readonly CONTACT: "CONTACT";
  readonly CONTRACT: "CONTRACT";
  readonly DOCUMENT: "DOCUMENT";
  readonly GROUP: "GROUP";
  readonly IDEA: "IDEA";
  readonly LEAD: "LEAD";
  readonly OPPORTUNITY: "OPPORTUNITY";
  readonly PARTNER: "PARTNER";
  readonly PRICEBOOK: "PRICEBOOK";
  readonly PRODUCT: "PRODUCT";
  readonly PROFILE: "PROFILE";
  readonly SOLUTION: "SOLUTION";
  readonly TASK: "TASK";
  readonly USER: "USER";
};
export type SalesforceStandardObjectName =
  (typeof SalesforceStandardObjectName)[keyof typeof SalesforceStandardObjectName];
export declare const ServiceNowAuthenticationType: {
  readonly HTTP_BASIC: "HTTP_BASIC";
  readonly OAUTH2: "OAUTH2";
};
export type ServiceNowAuthenticationType =
  (typeof ServiceNowAuthenticationType)[keyof typeof ServiceNowAuthenticationType];
export declare const ServiceNowBuildVersionType: {
  readonly LONDON: "LONDON";
  readonly OTHERS: "OTHERS";
};
export type ServiceNowBuildVersionType =
  (typeof ServiceNowBuildVersionType)[keyof typeof ServiceNowBuildVersionType];
export declare const SharePointOnlineAuthenticationType: {
  readonly HTTP_BASIC: "HTTP_BASIC";
  readonly OAUTH2: "OAUTH2";
};
export type SharePointOnlineAuthenticationType =
  (typeof SharePointOnlineAuthenticationType)[keyof typeof SharePointOnlineAuthenticationType];
export declare const SharePointVersion: {
  readonly SHAREPOINT_2013: "SHAREPOINT_2013";
  readonly SHAREPOINT_2016: "SHAREPOINT_2016";
  readonly SHAREPOINT_2019: "SHAREPOINT_2019";
  readonly SHAREPOINT_ONLINE: "SHAREPOINT_ONLINE";
};
export type SharePointVersion =
  (typeof SharePointVersion)[keyof typeof SharePointVersion];
export declare const SlackEntity: {
  readonly DIRECT_MESSAGE: "DIRECT_MESSAGE";
  readonly GROUP_MESSAGE: "GROUP_MESSAGE";
  readonly PRIVATE_CHANNEL: "PRIVATE_CHANNEL";
  readonly PUBLIC_CHANNEL: "PUBLIC_CHANNEL";
};
export type SlackEntity = (typeof SlackEntity)[keyof typeof SlackEntity];
export declare const WebCrawlerMode: {
  readonly EVERYTHING: "EVERYTHING";
  readonly HOST_ONLY: "HOST_ONLY";
  readonly SUBDOMAINS: "SUBDOMAINS";
};
export type WebCrawlerMode =
  (typeof WebCrawlerMode)[keyof typeof WebCrawlerMode];
export declare const DataSourceType: {
  readonly ALFRESCO: "ALFRESCO";
  readonly BOX: "BOX";
  readonly CONFLUENCE: "CONFLUENCE";
  readonly CUSTOM: "CUSTOM";
  readonly DATABASE: "DATABASE";
  readonly FSX: "FSX";
  readonly GITHUB: "GITHUB";
  readonly GOOGLEDRIVE: "GOOGLEDRIVE";
  readonly JIRA: "JIRA";
  readonly ONEDRIVE: "ONEDRIVE";
  readonly QUIP: "QUIP";
  readonly S3: "S3";
  readonly SALESFORCE: "SALESFORCE";
  readonly SERVICENOW: "SERVICENOW";
  readonly SHAREPOINT: "SHAREPOINT";
  readonly SLACK: "SLACK";
  readonly TEMPLATE: "TEMPLATE";
  readonly WEBCRAWLER: "WEBCRAWLER";
  readonly WORKDOCS: "WORKDOCS";
};
export type DataSourceType =
  (typeof DataSourceType)[keyof typeof DataSourceType];
export declare const FaqFileFormat: {
  readonly CSV: "CSV";
  readonly CSV_WITH_HEADER: "CSV_WITH_HEADER";
  readonly JSON: "JSON";
};
export type FaqFileFormat = (typeof FaqFileFormat)[keyof typeof FaqFileFormat];
export declare const FeaturedResultsSetStatus: {
  readonly ACTIVE: "ACTIVE";
  readonly INACTIVE: "INACTIVE";
};
export type FeaturedResultsSetStatus =
  (typeof FeaturedResultsSetStatus)[keyof typeof FeaturedResultsSetStatus];
export declare const IndexEdition: {
  readonly DEVELOPER_EDITION: "DEVELOPER_EDITION";
  readonly ENTERPRISE_EDITION: "ENTERPRISE_EDITION";
  readonly GEN_AI_ENTERPRISE_EDITION: "GEN_AI_ENTERPRISE_EDITION";
};
export type IndexEdition = (typeof IndexEdition)[keyof typeof IndexEdition];
export declare const UserContextPolicy: {
  readonly ATTRIBUTE_FILTER: "ATTRIBUTE_FILTER";
  readonly USER_TOKEN: "USER_TOKEN";
};
export type UserContextPolicy =
  (typeof UserContextPolicy)[keyof typeof UserContextPolicy];
export declare const UserGroupResolutionMode: {
  readonly AWS_SSO: "AWS_SSO";
  readonly NONE: "NONE";
};
export type UserGroupResolutionMode =
  (typeof UserGroupResolutionMode)[keyof typeof UserGroupResolutionMode];
export declare const KeyLocation: {
  readonly SECRET_MANAGER: "SECRET_MANAGER";
  readonly URL: "URL";
};
export type KeyLocation = (typeof KeyLocation)[keyof typeof KeyLocation];
export declare const DataSourceStatus: {
  readonly ACTIVE: "ACTIVE";
  readonly CREATING: "CREATING";
  readonly DELETING: "DELETING";
  readonly FAILED: "FAILED";
  readonly UPDATING: "UPDATING";
};
export type DataSourceStatus =
  (typeof DataSourceStatus)[keyof typeof DataSourceStatus];
export declare const EndpointType: {
  readonly HOME: "HOME";
};
export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
export declare const ExperienceStatus: {
  readonly ACTIVE: "ACTIVE";
  readonly CREATING: "CREATING";
  readonly DELETING: "DELETING";
  readonly FAILED: "FAILED";
};
export type ExperienceStatus =
  (typeof ExperienceStatus)[keyof typeof ExperienceStatus];
export declare const FaqStatus: {
  readonly ACTIVE: "ACTIVE";
  readonly CREATING: "CREATING";
  readonly DELETING: "DELETING";
  readonly FAILED: "FAILED";
  readonly UPDATING: "UPDATING";
};
export type FaqStatus = (typeof FaqStatus)[keyof typeof FaqStatus];
export declare const Order: {
  readonly ASCENDING: "ASCENDING";
  readonly DESCENDING: "DESCENDING";
};
export type Order = (typeof Order)[keyof typeof Order];
export declare const DocumentAttributeValueType: {
  readonly DATE_VALUE: "DATE_VALUE";
  readonly LONG_VALUE: "LONG_VALUE";
  readonly STRING_LIST_VALUE: "STRING_LIST_VALUE";
  readonly STRING_VALUE: "STRING_VALUE";
};
export type DocumentAttributeValueType =
  (typeof DocumentAttributeValueType)[keyof typeof DocumentAttributeValueType];
export declare const IndexStatus: {
  readonly ACTIVE: "ACTIVE";
  readonly CREATING: "CREATING";
  readonly DELETING: "DELETING";
  readonly FAILED: "FAILED";
  readonly SYSTEM_UPDATING: "SYSTEM_UPDATING";
  readonly UPDATING: "UPDATING";
};
export type IndexStatus = (typeof IndexStatus)[keyof typeof IndexStatus];
export declare const PrincipalMappingStatus: {
  readonly DELETED: "DELETED";
  readonly DELETING: "DELETING";
  readonly FAILED: "FAILED";
  readonly PROCESSING: "PROCESSING";
  readonly SUCCEEDED: "SUCCEEDED";
};
export type PrincipalMappingStatus =
  (typeof PrincipalMappingStatus)[keyof typeof PrincipalMappingStatus];
export declare const QuerySuggestionsBlockListStatus: {
  readonly ACTIVE: "ACTIVE";
  readonly ACTIVE_BUT_UPDATE_FAILED: "ACTIVE_BUT_UPDATE_FAILED";
  readonly CREATING: "CREATING";
  readonly DELETING: "DELETING";
  readonly FAILED: "FAILED";
  readonly UPDATING: "UPDATING";
};
export type QuerySuggestionsBlockListStatus =
  (typeof QuerySuggestionsBlockListStatus)[keyof typeof QuerySuggestionsBlockListStatus];
export declare const Mode: {
  readonly ENABLED: "ENABLED";
  readonly LEARN_ONLY: "LEARN_ONLY";
};
export type Mode = (typeof Mode)[keyof typeof Mode];
export declare const QuerySuggestionsStatus: {
  readonly ACTIVE: "ACTIVE";
  readonly UPDATING: "UPDATING";
};
export type QuerySuggestionsStatus =
  (typeof QuerySuggestionsStatus)[keyof typeof QuerySuggestionsStatus];
export declare const ThesaurusStatus: {
  readonly ACTIVE: "ACTIVE";
  readonly ACTIVE_BUT_UPDATE_FAILED: "ACTIVE_BUT_UPDATE_FAILED";
  readonly CREATING: "CREATING";
  readonly DELETING: "DELETING";
  readonly FAILED: "FAILED";
  readonly UPDATING: "UPDATING";
};
export type ThesaurusStatus =
  (typeof ThesaurusStatus)[keyof typeof ThesaurusStatus];
export declare const SuggestionType: {
  readonly DOCUMENT_ATTRIBUTES: "DOCUMENT_ATTRIBUTES";
  readonly QUERY: "QUERY";
};
export type SuggestionType =
  (typeof SuggestionType)[keyof typeof SuggestionType];
export declare const Interval: {
  readonly ONE_MONTH_AGO: "ONE_MONTH_AGO";
  readonly ONE_WEEK_AGO: "ONE_WEEK_AGO";
  readonly THIS_MONTH: "THIS_MONTH";
  readonly THIS_WEEK: "THIS_WEEK";
  readonly TWO_MONTHS_AGO: "TWO_MONTHS_AGO";
  readonly TWO_WEEKS_AGO: "TWO_WEEKS_AGO";
};
export type Interval = (typeof Interval)[keyof typeof Interval];
export declare const MetricType: {
  readonly AGG_QUERY_DOC_METRICS: "AGG_QUERY_DOC_METRICS";
  readonly DOCS_BY_CLICK_COUNT: "DOCS_BY_CLICK_COUNT";
  readonly QUERIES_BY_COUNT: "QUERIES_BY_COUNT";
  readonly QUERIES_BY_ZERO_CLICK_RATE: "QUERIES_BY_ZERO_CLICK_RATE";
  readonly QUERIES_BY_ZERO_RESULT_RATE: "QUERIES_BY_ZERO_RESULT_RATE";
  readonly TREND_QUERY_DOC_METRICS: "TREND_QUERY_DOC_METRICS";
};
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
export declare const DataSourceSyncJobStatus: {
  readonly ABORTED: "ABORTED";
  readonly FAILED: "FAILED";
  readonly INCOMPLETE: "INCOMPLETE";
  readonly STOPPING: "STOPPING";
  readonly SUCCEEDED: "SUCCEEDED";
  readonly SYNCING: "SYNCING";
  readonly SYNCING_INDEXING: "SYNCING_INDEXING";
};
export type DataSourceSyncJobStatus =
  (typeof DataSourceSyncJobStatus)[keyof typeof DataSourceSyncJobStatus];
export declare const MissingAttributeKeyStrategy: {
  readonly COLLAPSE: "COLLAPSE";
  readonly EXPAND: "EXPAND";
  readonly IGNORE: "IGNORE";
};
export type MissingAttributeKeyStrategy =
  (typeof MissingAttributeKeyStrategy)[keyof typeof MissingAttributeKeyStrategy];
export declare const SortOrder: {
  readonly ASC: "ASC";
  readonly DESC: "DESC";
};
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
export declare const QueryResultType: {
  readonly ANSWER: "ANSWER";
  readonly DOCUMENT: "DOCUMENT";
  readonly QUESTION_ANSWER: "QUESTION_ANSWER";
};
export type QueryResultType =
  (typeof QueryResultType)[keyof typeof QueryResultType];
export declare const QueryResultFormat: {
  readonly TABLE: "TABLE";
  readonly TEXT: "TEXT";
};
export type QueryResultFormat =
  (typeof QueryResultFormat)[keyof typeof QueryResultFormat];
export declare const ScoreConfidence: {
  readonly HIGH: "HIGH";
  readonly LOW: "LOW";
  readonly MEDIUM: "MEDIUM";
  readonly NOT_AVAILABLE: "NOT_AVAILABLE";
  readonly VERY_HIGH: "VERY_HIGH";
};
export type ScoreConfidence =
  (typeof ScoreConfidence)[keyof typeof ScoreConfidence];
export declare const WarningCode: {
  readonly QUERY_LANGUAGE_INVALID_SYNTAX: "QUERY_LANGUAGE_INVALID_SYNTAX";
};
export type WarningCode = (typeof WarningCode)[keyof typeof WarningCode];
export declare const RelevanceType: {
  readonly NOT_RELEVANT: "NOT_RELEVANT";
  readonly RELEVANT: "RELEVANT";
};
export type RelevanceType = (typeof RelevanceType)[keyof typeof RelevanceType];
