declare const COMPOUND_MUTATION_NAME = "compoundMutation"; declare const DETACH_EVENT_SOURCES_MUTATION_NAME = "detachEventSources"; declare const TIER_MISSING_VALUE = "Tier must have a valid value"; declare const COMPASS_CATALOG_SCHEMA_CHANGE = "The compass catalog schema has changed. Try upgrading SDK package version."; declare const FORGE_GRAPHQL_SDK_ERROR_SOURCE = "FORGE_GRAPHQL"; declare const NOT_IMPLEMENTED_ERROR_TYPE = "NOT_IMPLEMENTED"; declare const NOT_FOUND_ERROR_TYPE = "NOT_FOUND"; declare const INVALID_REQUEST_ERROR_TYPE = "INVALID_REQUEST"; declare const INTERNAL_SERVER_ERROR_TYPE = "INTERNAL_SERVER_ERROR"; declare const SDK_SCHEMA_ERROR: { message: string; errorSource: string; errorType: string; statusCode: number; }; declare const COMPONENT_NOT_FOUND = "Component not found"; declare const GRAPHQL_GATEWAY_SOURCE = "GRAPHQL_GATEWAY"; declare const QUERY_ERROR = "QueryError"; declare const COMPONENT_RETRIEVAL_OPTIONS: { includeMetricSourceValues: boolean; includeLinks: boolean; includeEventSources: boolean; includeMetricSources: boolean; includeCustomFields: boolean; includeCustomFieldOptions: boolean; }; declare const COMPONENT_BY_EXTERNAL_ALIAS_RETRIEVAL_OPTIONS: { includeLinks: boolean; includeEventSources: boolean; includeMetricSources: boolean; includeCustomFields: boolean; includeCustomFieldOptions: boolean; }; declare const SEARCH_COMPONENTS_RETRIEVAL_OPTIONS: { includeExternalAliases: boolean; includeLinks: boolean; includeEventSources: boolean; includeMetricSources: boolean; includeCustomFields: boolean; includeCustomFieldOptions: boolean; }; declare const METRIC_DEFINITION_RETRIEVAL_OPTIONS: { includeMetricSources: boolean; }; declare const MAX_COMPONENT_SLUG_LENGTH = 64; declare const MAX_COMPONENT_TYPE_NAME_LENGTH = 128; declare const MAX_NAME_LENGTH = 512; declare const MAX_DESCRIPTION_LENGTH = 4096; declare const MAX_LINKS_OF_TYPE = 10; declare const YAML_VERSION = 1; declare const MAX_LABEL_NAME_LENGTH = 40; declare const HELLO_CLOUD_ID = "a436116f-02ce-4520-8fbb-7301462a1674"; declare const HELLO_RESTRICTED_TYPE = "SERVICE"; export { COMPOUND_MUTATION_NAME, DETACH_EVENT_SOURCES_MUTATION_NAME, COMPASS_CATALOG_SCHEMA_CHANGE, FORGE_GRAPHQL_SDK_ERROR_SOURCE, HELLO_CLOUD_ID, HELLO_RESTRICTED_TYPE, NOT_IMPLEMENTED_ERROR_TYPE, NOT_FOUND_ERROR_TYPE, INTERNAL_SERVER_ERROR_TYPE, INVALID_REQUEST_ERROR_TYPE, SDK_SCHEMA_ERROR, COMPONENT_NOT_FOUND, TIER_MISSING_VALUE, GRAPHQL_GATEWAY_SOURCE, QUERY_ERROR, COMPONENT_RETRIEVAL_OPTIONS, COMPONENT_BY_EXTERNAL_ALIAS_RETRIEVAL_OPTIONS, SEARCH_COMPONENTS_RETRIEVAL_OPTIONS, METRIC_DEFINITION_RETRIEVAL_OPTIONS, MAX_COMPONENT_SLUG_LENGTH, MAX_COMPONENT_TYPE_NAME_LENGTH, MAX_NAME_LENGTH, MAX_DESCRIPTION_LENGTH, MAX_LINKS_OF_TYPE, YAML_VERSION, MAX_LABEL_NAME_LENGTH, };