import { AttributeName, AttributeType, SearchAliasType } from './attributes.cjs';

type AttributeSearchType = AttributeType | SearchAliasType;
interface AttributeSearchMetadata {
    /** The original attribute key before it is exposed under its search name */
    canonicalName: AttributeName;
    /** The type exposed by Sentry search */
    type: AttributeSearchType;
    /** A description of the attribute */
    brief: string;
    /** Whether the attribute is internal to Sentry */
    internal?: true;
    /** Every key under which the attribute's value is readable, preferred key first */
    deprecationChain: readonly string[];
}
/**
 * Search name for {@link attributes.ADDRESS}. `address`
 *
 * @deprecated Use {@link SEARCH_SERVER__ADDRESS} (`server.address`) instead
 */
declare const SEARCH_ADDRESS = "address";
/**
 * Search name for {@link attributes.AI_CITATIONS}. `ai.citations`
 *
 * @deprecated
 */
declare const SEARCH_AI__CITATIONS = "ai.citations";
/**
 * Search name for {@link attributes.AI_COMPLETION_TOKENS_USED}. `ai.completion_tokens.used`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__OUTPUT_TOKENS} (`gen_ai.usage.output_tokens`) instead
 */
declare const SEARCH_AI__COMPLETION_TOKENS__USED = "ai.completion_tokens.used";
/**
 * Search name for {@link attributes.AI_DOCUMENTS}. `ai.documents`
 *
 * @deprecated
 */
declare const SEARCH_AI__DOCUMENTS = "ai.documents";
/**
 * Search name for {@link attributes.AI_FINISH_REASON}. `ai.finish_reason`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__RESPONSE__FINISH_REASONS} (`gen_ai.response.finish_reasons`) instead
 */
declare const SEARCH_AI__FINISH_REASON = "ai.finish_reason";
/**
 * Search name for {@link attributes.AI_FREQUENCY_PENALTY}. `ai.frequency_penalty`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__REQUEST__FREQUENCY_PENALTY} (`gen_ai.request.frequency_penalty`) instead
 */
declare const SEARCH_AI__FREQUENCY_PENALTY = "ai.frequency_penalty";
/**
 * Search name for {@link attributes.AI_FUNCTION_CALL}. `ai.function_call`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__NAME} (`gen_ai.tool.name`) instead
 */
declare const SEARCH_AI__FUNCTION_CALL = "ai.function_call";
/**
 * Search name for {@link attributes.AI_GENERATION_ID}. `ai.generation_id`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__RESPONSE__ID} (`gen_ai.response.id`) instead
 */
declare const SEARCH_AI__GENERATION_ID = "ai.generation_id";
/**
 * Search name for {@link attributes.AI_INPUT_MESSAGES}. `ai.input_messages`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__INPUT__MESSAGES} (`gen_ai.input.messages`) instead
 */
declare const SEARCH_AI__INPUT_MESSAGES = "ai.input_messages";
/**
 * Search name for {@link attributes.AI_IS_SEARCH_REQUIRED}. `ai.is_search_required`
 *
 * @deprecated
 */
declare const SEARCH_AI__IS_SEARCH_REQUIRED = "ai.is_search_required";
/**
 * Search name for {@link attributes.AI_METADATA}. `ai.metadata`
 *
 * @deprecated
 */
declare const SEARCH_AI__METADATA = "ai.metadata";
/**
 * Search name for {@link attributes.AI_MODEL_ID}. `ai.model.id`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__REQUEST__MODEL} (`gen_ai.request.model`) instead
 */
declare const SEARCH_AI__MODEL__ID = "ai.model.id";
/**
 * Search name for {@link attributes.AI_MODEL_PROVIDER}. `ai.model.provider`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__PROVIDER__NAME} (`gen_ai.provider.name`) instead
 */
declare const SEARCH_AI__MODEL__PROVIDER = "ai.model.provider";
/**
 * Search name for {@link attributes._AI_MODEL_ID}. `ai.model_id`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__REQUEST__MODEL} (`gen_ai.request.model`) instead
 */
declare const SEARCH_AI__MODEL_ID = "ai.model_id";
/**
 * Search name for {@link attributes.AI_PIPELINE_NAME}. `ai.pipeline.name`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__PIPELINE__NAME} (`gen_ai.pipeline.name`) instead
 */
declare const SEARCH_AI__PIPELINE__NAME = "ai.pipeline.name";
/**
 * Search name for {@link attributes.AI_PREAMBLE}. `ai.preamble`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__SYSTEM_INSTRUCTIONS} (`gen_ai.system_instructions`) instead
 */
declare const SEARCH_AI__PREAMBLE = "ai.preamble";
/**
 * Search name for {@link attributes.AI_PRESENCE_PENALTY}. `ai.presence_penalty`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__REQUEST__PRESENCE_PENALTY} (`gen_ai.request.presence_penalty`) instead
 */
declare const SEARCH_AI__PRESENCE_PENALTY = "ai.presence_penalty";
/**
 * Search name for {@link attributes.AI_PROMPT}. `ai.prompt`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__INPUT__MESSAGES} (`gen_ai.input.messages`) instead
 */
declare const SEARCH_AI__PROMPT = "ai.prompt";
/**
 * Search name for {@link attributes.AI_PROMPT_MESSAGES}. `ai.prompt.messages`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__INPUT__MESSAGES} (`gen_ai.input.messages`) instead
 */
declare const SEARCH_AI__PROMPT__MESSAGES = "ai.prompt.messages";
/**
 * Search name for {@link attributes.AI_PROMPT_TOOLS}. `ai.prompt.tools`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__DEFINITIONS} (`gen_ai.tool.definitions`) instead
 */
declare const SEARCH_AI__PROMPT__TOOLS = "ai.prompt.tools";
/**
 * Search name for {@link attributes.AI_PROMPT_TOKENS_USED}. `ai.prompt_tokens.used`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__INPUT_TOKENS} (`gen_ai.usage.input_tokens`) instead
 */
declare const SEARCH_AI__PROMPT_TOKENS__USED = "ai.prompt_tokens.used";
/**
 * Search name for {@link attributes.AI_RAW_PROMPTING}. `ai.raw_prompting`
 *
 * @deprecated
 */
declare const SEARCH_AI__RAW_PROMPTING = "ai.raw_prompting";
/**
 * Search name for {@link attributes.AI_RESPONSE_ID}. `ai.response.id`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__RESPONSE__ID} (`gen_ai.response.id`) instead
 */
declare const SEARCH_AI__RESPONSE__ID = "ai.response.id";
/**
 * Search name for {@link attributes.AI_RESPONSE_MODEL}. `ai.response.model`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__RESPONSE__MODEL} (`gen_ai.response.model`) instead
 */
declare const SEARCH_AI__RESPONSE__MODEL = "ai.response.model";
/**
 * Search name for {@link attributes.AI_RESPONSE_OBJECT}. `ai.response.object`
 *
 * @deprecated
 */
declare const SEARCH_AI__RESPONSE__OBJECT = "ai.response.object";
/**
 * Search name for {@link attributes.AI_RESPONSE_TEXT}. `ai.response.text`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__OUTPUT__MESSAGES} (`gen_ai.output.messages`) instead
 */
declare const SEARCH_AI__RESPONSE__TEXT = "ai.response.text";
/**
 * Search name for {@link attributes.AI_RESPONSE_TIMESTAMP}. `ai.response.timestamp`
 *
 * @deprecated
 */
declare const SEARCH_AI__RESPONSE__TIMESTAMP = "ai.response.timestamp";
/**
 * Search name for {@link attributes.AI_RESPONSE_TOOLCALLS}. `ai.response.toolCalls`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__OUTPUT__MESSAGES} (`gen_ai.output.messages`) instead
 */
declare const SEARCH_AI__RESPONSE__TOOLCALLS = "ai.response.toolCalls";
/**
 * Search name for {@link attributes.AI_RESPONSE_FORMAT}. `ai.response_format`
 *
 * @deprecated
 */
declare const SEARCH_AI__RESPONSE_FORMAT = "ai.response_format";
/**
 * Search name for {@link attributes.AI_RESPONSES}. `ai.responses`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__OUTPUT__MESSAGES} (`gen_ai.output.messages`) instead
 */
declare const SEARCH_AI__RESPONSES = "ai.responses";
/**
 * Search name for {@link attributes.AI_SCHEMA}. `ai.schema`
 *
 * @deprecated
 */
declare const SEARCH_AI__SCHEMA = "ai.schema";
/**
 * Search name for {@link attributes.AI_SEARCH_QUERIES}. `ai.search_queries`
 *
 * @deprecated
 */
declare const SEARCH_AI__SEARCH_QUERIES = "ai.search_queries";
/**
 * Search name for {@link attributes.AI_SEARCH_RESULTS}. `ai.search_results`
 *
 * @deprecated
 */
declare const SEARCH_AI__SEARCH_RESULTS = "ai.search_results";
/**
 * Search name for {@link attributes.AI_SEED}. `ai.seed`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__REQUEST__SEED} (`gen_ai.request.seed`) instead
 */
declare const SEARCH_AI__SEED = "ai.seed";
/**
 * Search name for {@link attributes.AI_STREAMING}. `ai.streaming`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__RESPONSE__STREAMING} (`gen_ai.response.streaming`) instead
 */
declare const SEARCH_AI__STREAMING = "ai.streaming";
/**
 * Search name for {@link attributes.AI_TAGS}. `ai.tags`
 *
 * @deprecated
 */
declare const SEARCH_AI__TAGS = "ai.tags";
/**
 * Search name for {@link attributes.AI_TEMPERATURE}. `ai.temperature`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__REQUEST__TEMPERATURE} (`gen_ai.request.temperature`) instead
 */
declare const SEARCH_AI__TEMPERATURE = "ai.temperature";
/**
 * Search name for {@link attributes.AI_TEXTS}. `ai.texts`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__INPUT__MESSAGES} (`gen_ai.input.messages`) instead
 */
declare const SEARCH_AI__TEXTS = "ai.texts";
/**
 * Search name for {@link attributes.AI_TOOLCALL_ARGS}. `ai.toolCall.args`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__CALL__ARGUMENTS} (`gen_ai.tool.call.arguments`) instead
 */
declare const SEARCH_AI__TOOLCALL__ARGS = "ai.toolCall.args";
/**
 * Search name for {@link attributes.AI_TOOLCALL_RESULT}. `ai.toolCall.result`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__CALL__RESULT} (`gen_ai.tool.call.result`) instead
 */
declare const SEARCH_AI__TOOLCALL__RESULT = "ai.toolCall.result";
/**
 * Search name for {@link attributes.AI_TOOL_CALLS}. `ai.tool_calls`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__OUTPUT__MESSAGES} (`gen_ai.output.messages`) instead
 */
declare const SEARCH_AI__TOOL_CALLS = "ai.tool_calls";
/**
 * Search name for {@link attributes.AI_TOOLS}. `ai.tools`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__DEFINITIONS} (`gen_ai.tool.definitions`) instead
 */
declare const SEARCH_AI__TOOLS = "ai.tools";
/**
 * Search name for {@link attributes.AI_TOP_K}. `ai.top_k`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__REQUEST__TOP_K} (`gen_ai.request.top_k`) instead
 */
declare const SEARCH_AI__TOP_K = "ai.top_k";
/**
 * Search name for {@link attributes.AI_TOP_P}. `ai.top_p`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__REQUEST__TOP_P} (`gen_ai.request.top_p`) instead
 */
declare const SEARCH_AI__TOP_P = "ai.top_p";
/**
 * Search name for {@link attributes.AI_TOTAL_COST}. `ai.total_cost`
 */
declare const SEARCH_AI__TOTAL_COST = "ai.total_cost";
/**
 * Search name for {@link attributes.AI_TOTAL_TOKENS_USED}. `ai.total_tokens.used`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__TOTAL_TOKENS} (`gen_ai.usage.total_tokens`) instead
 */
declare const SEARCH_AI__TOTAL_TOKENS__USED = "ai.total_tokens.used";
/**
 * Search name for {@link attributes.AI_USAGE_TOKENS}. `ai.usage.tokens`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__TOTAL_TOKENS} (`gen_ai.usage.total_tokens`) instead
 */
declare const SEARCH_AI__USAGE__TOKENS = "ai.usage.tokens";
/**
 * Search name for {@link attributes.AI_VALUES}. `ai.values`
 *
 * @deprecated
 */
declare const SEARCH_AI__VALUES = "ai.values";
/**
 * Search name for {@link attributes.AI_WARNINGS}. `ai.warnings`
 *
 * @deprecated
 */
declare const SEARCH_AI__WARNINGS = "ai.warnings";
/**
 * Search name for {@link attributes.ANGULAR_VERSION}. `angular.version`
 */
declare const SEARCH_ANGULAR__VERSION = "angular.version";
/**
 * Search name for {@link attributes.APP_APP_BUILD}. `app.app_build`
 *
 * @deprecated Use {@link SEARCH_APP__BUILD} (`app.build`) instead
 */
declare const SEARCH_APP__APP_BUILD = "app.app_build";
/**
 * Search name for {@link attributes.APP_APP_IDENTIFIER}. `app.app_identifier`
 *
 * @deprecated Use {@link SEARCH_APP__IDENTIFIER} (`app.identifier`) instead
 */
declare const SEARCH_APP__APP_IDENTIFIER = "app.app_identifier";
/**
 * Search name for {@link attributes.APP_APP_NAME}. `app.app_name`
 *
 * @deprecated Use {@link SEARCH_APP__NAME} (`app.name`) instead
 */
declare const SEARCH_APP__APP_NAME = "app.app_name";
/**
 * Search name for {@link attributes.APP_APP_START_TIME}. `app.app_start_time`
 *
 * @deprecated Use {@link SEARCH_APP__START_TIME} (`app.start_time`) instead
 */
declare const SEARCH_APP__APP_START_TIME = "app.app_start_time";
/**
 * Search name for {@link attributes.APP_APP_VERSION}. `app.app_version`
 *
 * @deprecated Use {@link SEARCH_APP__VERSION} (`app.version`) instead
 */
declare const SEARCH_APP__APP_VERSION = "app.app_version";
/**
 * Search name for {@link attributes.APP_BUILD}. `app.build`
 */
declare const SEARCH_APP__BUILD = "app.build";
/**
 * Search name for {@link attributes.APP_IDENTIFIER}. `app.identifier`
 */
declare const SEARCH_APP__IDENTIFIER = "app.identifier";
/**
 * Search name for {@link attributes.APP_IN_FOREGROUND}. `app.in_foreground`
 */
declare const SEARCH_APP__IN_FOREGROUND = "app.in_foreground";
/**
 * Search name for {@link attributes.APP_NAME}. `app.name`
 */
declare const SEARCH_APP__NAME = "app.name";
/**
 * Search name for {@link attributes.APP_START_TIME}. `app.start_time`
 */
declare const SEARCH_APP__START_TIME = "app.start_time";
/**
 * Search name for {@link attributes.APP_VERSION}. `app.version`
 */
declare const SEARCH_APP__VERSION = "app.version";
/**
 * Search name for {@link attributes.APP_VITALS_FRAMES_DELAY_VALUE}. `app.vitals.frames.delay.value`
 */
declare const SEARCH_APP__VITALS__FRAMES__DELAY__VALUE = "app.vitals.frames.delay.value";
/**
 * Search name for {@link attributes.APP_VITALS_FRAMES_FROZEN_COUNT}. `app.vitals.frames.frozen.count`
 */
declare const SEARCH_APP__VITALS__FRAMES__FROZEN__COUNT = "app.vitals.frames.frozen.count";
/**
 * Search name for {@link attributes.APP_VITALS_FRAMES_FROZEN_RATE}. `app.vitals.frames.frozen.rate`
 */
declare const SEARCH_APP__VITALS__FRAMES__FROZEN__RATE = "app.vitals.frames.frozen.rate";
/**
 * Search name for {@link attributes.APP_VITALS_FRAMES_SLOW_COUNT}. `app.vitals.frames.slow.count`
 */
declare const SEARCH_APP__VITALS__FRAMES__SLOW__COUNT = "app.vitals.frames.slow.count";
/**
 * Search name for {@link attributes.APP_VITALS_FRAMES_SLOW_RATE}. `app.vitals.frames.slow.rate`
 */
declare const SEARCH_APP__VITALS__FRAMES__SLOW__RATE = "app.vitals.frames.slow.rate";
/**
 * Search name for {@link attributes.APP_VITALS_FRAMES_TOTAL_COUNT}. `app.vitals.frames.total.count`
 */
declare const SEARCH_APP__VITALS__FRAMES__TOTAL__COUNT = "app.vitals.frames.total.count";
/**
 * Search name for {@link attributes.APP_VITALS_STALL_DURATION}. `app.vitals.stall.duration`
 */
declare const SEARCH_APP__VITALS__STALL__DURATION = "app.vitals.stall.duration";
/**
 * Search name for {@link attributes.APP_VITALS_STALL_PERCENTAGE}. `app.vitals.stall.percentage`
 */
declare const SEARCH_APP__VITALS__STALL__PERCENTAGE = "app.vitals.stall.percentage";
/**
 * Search name for {@link attributes.APP_VITALS_START_COLD_VALUE}. `app.vitals.start.cold.value`
 */
declare const SEARCH_APP__VITALS__START__COLD__VALUE = "app.vitals.start.cold.value";
/**
 * Search name for {@link attributes.APP_VITALS_START_PREWARMED}. `app.vitals.start.prewarmed`
 */
declare const SEARCH_APP__VITALS__START__PREWARMED = "app.vitals.start.prewarmed";
/**
 * Search name for {@link attributes.APP_VITALS_START_REASON}. `app.vitals.start.reason`
 */
declare const SEARCH_APP__VITALS__START__REASON = "app.vitals.start.reason";
/**
 * Search name for {@link attributes.APP_VITALS_START_SCREEN}. `app.vitals.start.screen`
 */
declare const SEARCH_APP__VITALS__START__SCREEN = "app.vitals.start.screen";
/**
 * Search name for {@link attributes.APP_VITALS_START_TYPE}. `app.vitals.start.type`
 */
declare const SEARCH_APP__VITALS__START__TYPE = "app.vitals.start.type";
/**
 * Search name for {@link attributes.APP_VITALS_START_WARM_VALUE}. `app.vitals.start.warm.value`
 */
declare const SEARCH_APP__VITALS__START__WARM__VALUE = "app.vitals.start.warm.value";
/**
 * Search name for {@link attributes.APP_VITALS_TTFD_VALUE}. `app.vitals.ttfd.value`
 */
declare const SEARCH_APP__VITALS__TTFD__VALUE = "app.vitals.ttfd.value";
/**
 * Search name for {@link attributes.APP_VITALS_TTID_VALUE}. `app.vitals.ttid.value`
 */
declare const SEARCH_APP__VITALS__TTID__VALUE = "app.vitals.ttid.value";
/**
 * Search name for {@link attributes.APP_START_COLD}. `app_start_cold`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__START__COLD__VALUE} (`app.vitals.start.cold.value`) instead
 */
declare const SEARCH_APP_START_COLD = "app_start_cold";
/**
 * Search name for {@link attributes.APP_START_TYPE}. `app_start_type`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__START__TYPE} (`app.vitals.start.type`) instead
 */
declare const SEARCH_APP_START_TYPE = "app_start_type";
/**
 * Search name for {@link attributes.APP_START_WARM}. `app_start_warm`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__START__WARM__VALUE} (`app.vitals.start.warm.value`) instead
 */
declare const SEARCH_APP_START_WARM = "app_start_warm";
/**
 * Search name for {@link attributes.ART_GC_BLOCKING_COUNT}. `art.gc.blocking_count`
 */
declare const SEARCH_ART__GC__BLOCKING_COUNT = "art.gc.blocking_count";
/**
 * Search name for {@link attributes.ART_GC_BLOCKING_TIME}. `art.gc.blocking_time`
 */
declare const SEARCH_ART__GC__BLOCKING_TIME = "art.gc.blocking_time";
/**
 * Search name for {@link attributes.ART_GC_PRE_OOME_COUNT}. `art.gc.pre_oome_count`
 */
declare const SEARCH_ART__GC__PRE_OOME_COUNT = "art.gc.pre_oome_count";
/**
 * Search name for {@link attributes.ART_GC_TOTAL_COUNT}. `art.gc.total_count`
 */
declare const SEARCH_ART__GC__TOTAL_COUNT = "art.gc.total_count";
/**
 * Search name for {@link attributes.ART_GC_TOTAL_TIME}. `art.gc.total_time`
 */
declare const SEARCH_ART__GC__TOTAL_TIME = "art.gc.total_time";
/**
 * Search name for {@link attributes.ART_GC_WAITING_TIME}. `art.gc.waiting_time`
 */
declare const SEARCH_ART__GC__WAITING_TIME = "art.gc.waiting_time";
/**
 * Search name for {@link attributes.ART_MEMORY_FREE}. `art.memory.free`
 */
declare const SEARCH_ART__MEMORY__FREE = "art.memory.free";
/**
 * Search name for {@link attributes.ART_MEMORY_FREE_UNTIL_GC}. `art.memory.free_until_gc`
 */
declare const SEARCH_ART__MEMORY__FREE_UNTIL_GC = "art.memory.free_until_gc";
/**
 * Search name for {@link attributes.ART_MEMORY_FREE_UNTIL_OOME}. `art.memory.free_until_oome`
 */
declare const SEARCH_ART__MEMORY__FREE_UNTIL_OOME = "art.memory.free_until_oome";
/**
 * Search name for {@link attributes.ART_MEMORY_MAX}. `art.memory.max`
 */
declare const SEARCH_ART__MEMORY__MAX = "art.memory.max";
/**
 * Search name for {@link attributes.ART_MEMORY_TOTAL}. `art.memory.total`
 */
declare const SEARCH_ART__MEMORY__TOTAL = "art.memory.total";
/**
 * Search name for {@link attributes.AWS_CLOUDWATCH_LOGS_LOG_GROUP}. `aws.cloudwatch.logs.log_group`
 */
declare const SEARCH_AWS__CLOUDWATCH__LOGS__LOG_GROUP = "aws.cloudwatch.logs.log_group";
/**
 * Search name for {@link attributes.AWS_CLOUDWATCH_LOGS_LOG_STREAM}. `aws.cloudwatch.logs.log_stream`
 */
declare const SEARCH_AWS__CLOUDWATCH__LOGS__LOG_STREAM = "aws.cloudwatch.logs.log_stream";
/**
 * Search name for {@link attributes.AWS_CLOUDWATCH_LOGS_URL}. `aws.cloudwatch.logs.url`
 */
declare const SEARCH_AWS__CLOUDWATCH__LOGS__URL = "aws.cloudwatch.logs.url";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_ATTRIBUTE_DEFINITIONS}. `aws.dynamodb.attribute_definitions`
 */
declare const SEARCH_AWS__DYNAMODB__ATTRIBUTE_DEFINITIONS = "aws.dynamodb.attribute_definitions";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_CONSISTENT_READ}. `aws.dynamodb.consistent_read`
 */
declare const SEARCH_AWS__DYNAMODB__CONSISTENT_READ = "aws.dynamodb.consistent_read";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_CONSUMED_CAPACITY}. `aws.dynamodb.consumed_capacity`
 */
declare const SEARCH_AWS__DYNAMODB__CONSUMED_CAPACITY = "aws.dynamodb.consumed_capacity";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_COUNT}. `aws.dynamodb.count`
 */
declare const SEARCH_AWS__DYNAMODB__COUNT = "aws.dynamodb.count";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_EXCLUSIVE_START_TABLE}. `aws.dynamodb.exclusive_start_table`
 */
declare const SEARCH_AWS__DYNAMODB__EXCLUSIVE_START_TABLE = "aws.dynamodb.exclusive_start_table";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_GLOBAL_SECONDARY_INDEX_UPDATES}. `aws.dynamodb.global_secondary_index_updates`
 */
declare const SEARCH_AWS__DYNAMODB__GLOBAL_SECONDARY_INDEX_UPDATES = "aws.dynamodb.global_secondary_index_updates";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_GLOBAL_SECONDARY_INDEXES}. `aws.dynamodb.global_secondary_indexes`
 */
declare const SEARCH_AWS__DYNAMODB__GLOBAL_SECONDARY_INDEXES = "aws.dynamodb.global_secondary_indexes";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_INDEX_NAME}. `aws.dynamodb.index_name`
 */
declare const SEARCH_AWS__DYNAMODB__INDEX_NAME = "aws.dynamodb.index_name";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_ITEM_COLLECTION_METRICS}. `aws.dynamodb.item_collection_metrics`
 */
declare const SEARCH_AWS__DYNAMODB__ITEM_COLLECTION_METRICS = "aws.dynamodb.item_collection_metrics";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_LIMIT}. `aws.dynamodb.limit`
 */
declare const SEARCH_AWS__DYNAMODB__LIMIT = "aws.dynamodb.limit";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_LOCAL_SECONDARY_INDEXES}. `aws.dynamodb.local_secondary_indexes`
 */
declare const SEARCH_AWS__DYNAMODB__LOCAL_SECONDARY_INDEXES = "aws.dynamodb.local_secondary_indexes";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_PROJECTION}. `aws.dynamodb.projection`
 */
declare const SEARCH_AWS__DYNAMODB__PROJECTION = "aws.dynamodb.projection";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_PROVISIONED_READ_CAPACITY}. `aws.dynamodb.provisioned_read_capacity`
 */
declare const SEARCH_AWS__DYNAMODB__PROVISIONED_READ_CAPACITY = "aws.dynamodb.provisioned_read_capacity";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_PROVISIONED_WRITE_CAPACITY}. `aws.dynamodb.provisioned_write_capacity`
 */
declare const SEARCH_AWS__DYNAMODB__PROVISIONED_WRITE_CAPACITY = "aws.dynamodb.provisioned_write_capacity";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_SCAN_FORWARD}. `aws.dynamodb.scan_forward`
 */
declare const SEARCH_AWS__DYNAMODB__SCAN_FORWARD = "aws.dynamodb.scan_forward";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_SCANNED_COUNT}. `aws.dynamodb.scanned_count`
 */
declare const SEARCH_AWS__DYNAMODB__SCANNED_COUNT = "aws.dynamodb.scanned_count";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_SEGMENT}. `aws.dynamodb.segment`
 */
declare const SEARCH_AWS__DYNAMODB__SEGMENT = "aws.dynamodb.segment";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_SELECT}. `aws.dynamodb.select`
 */
declare const SEARCH_AWS__DYNAMODB__SELECT = "aws.dynamodb.select";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_TABLE_COUNT}. `aws.dynamodb.table_count`
 */
declare const SEARCH_AWS__DYNAMODB__TABLE_COUNT = "aws.dynamodb.table_count";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_TABLE_NAMES}. `aws.dynamodb.table_names`
 */
declare const SEARCH_AWS__DYNAMODB__TABLE_NAMES = "aws.dynamodb.table_names";
/**
 * Search name for {@link attributes.AWS_DYNAMODB_TOTAL_SEGMENTS}. `aws.dynamodb.total_segments`
 */
declare const SEARCH_AWS__DYNAMODB__TOTAL_SEGMENTS = "aws.dynamodb.total_segments";
/**
 * Search name for {@link attributes.AWS_EXTENDED_REQUEST_ID}. `aws.extended_request_id`
 */
declare const SEARCH_AWS__EXTENDED_REQUEST_ID = "aws.extended_request_id";
/**
 * Search name for {@link attributes._AWS_KINESIS_STREAM_NAME}. `aws.kinesis.stream.name`
 *
 * @deprecated Use {@link SEARCH_AWS__KINESIS__STREAM_NAME} (`aws.kinesis.stream_name`) instead
 */
declare const SEARCH_AWS__KINESIS__STREAM__NAME = "aws.kinesis.stream.name";
/**
 * Search name for {@link attributes.AWS_KINESIS_STREAM_NAME}. `aws.kinesis.stream_name`
 */
declare const SEARCH_AWS__KINESIS__STREAM_NAME = "aws.kinesis.stream_name";
/**
 * Search name for {@link attributes.AWS_LAMBDA_AWS_REQUEST_ID}. `aws.lambda.aws_request_id`
 *
 * @deprecated Use {@link SEARCH_FAAS__INVOCATION_ID} (`faas.invocation_id`) instead
 */
declare const SEARCH_AWS__LAMBDA__AWS_REQUEST_ID = "aws.lambda.aws_request_id";
/**
 * Search name for {@link attributes.AWS_LAMBDA_EXECUTION_DURATION_IN_MILLIS}. `aws.lambda.execution_duration_in_millis`
 */
declare const SEARCH_AWS__LAMBDA__EXECUTION_DURATION_IN_MILLIS = "aws.lambda.execution_duration_in_millis";
/**
 * Search name for {@link attributes.AWS_LAMBDA_FUNCTION_NAME}. `aws.lambda.function_name`
 *
 * @deprecated Use {@link SEARCH_FAAS__NAME} (`faas.name`) instead
 */
declare const SEARCH_AWS__LAMBDA__FUNCTION_NAME = "aws.lambda.function_name";
/**
 * Search name for {@link attributes.AWS_LAMBDA_FUNCTION_VERSION}. `aws.lambda.function_version`
 *
 * @deprecated Use {@link SEARCH_FAAS__VERSION} (`faas.version`) instead
 */
declare const SEARCH_AWS__LAMBDA__FUNCTION_VERSION = "aws.lambda.function_version";
/**
 * Search name for {@link attributes.AWS_LAMBDA_INVOKED_ARN}. `aws.lambda.invoked_arn`
 */
declare const SEARCH_AWS__LAMBDA__INVOKED_ARN = "aws.lambda.invoked_arn";
/**
 * Search name for {@link attributes.AWS_LAMBDA_INVOKED_FUNCTION_ARN}. `aws.lambda.invoked_function_arn`
 *
 * @deprecated Use {@link SEARCH_AWS__LAMBDA__INVOKED_ARN} (`aws.lambda.invoked_arn`) instead
 */
declare const SEARCH_AWS__LAMBDA__INVOKED_FUNCTION_ARN = "aws.lambda.invoked_function_arn";
/**
 * Search name for {@link attributes.AWS_LAMBDA_REMAINING_TIME_IN_MILLIS}. `aws.lambda.remaining_time_in_millis`
 */
declare const SEARCH_AWS__LAMBDA__REMAINING_TIME_IN_MILLIS = "aws.lambda.remaining_time_in_millis";
/**
 * Search name for {@link attributes.AWS_LOG_GROUP_NAMES}. `aws.log.group.names`
 */
declare const SEARCH_AWS__LOG__GROUP__NAMES = "aws.log.group.names";
/**
 * Search name for {@link attributes.AWS_LOG_STREAM_NAMES}. `aws.log.stream.names`
 */
declare const SEARCH_AWS__LOG__STREAM__NAMES = "aws.log.stream.names";
/**
 * Search name for {@link attributes.AWS_OPERATION_NAME}. `aws.operation_name`
 *
 * @deprecated Use {@link SEARCH_RPC__METHOD} (`rpc.method`) instead
 */
declare const SEARCH_AWS__OPERATION_NAME = "aws.operation_name";
/**
 * Search name for {@link attributes.AWS_REQUEST_EXTENDED_ID}. `aws.request.extended_id`
 *
 * @deprecated Use {@link SEARCH_AWS__EXTENDED_REQUEST_ID} (`aws.extended_request_id`) instead
 */
declare const SEARCH_AWS__REQUEST__EXTENDED_ID = "aws.request.extended_id";
/**
 * Search name for {@link attributes._AWS_REQUEST_ID}. `aws.request.id`
 *
 * @deprecated Use {@link SEARCH_AWS__REQUEST_ID} (`aws.request_id`) instead
 */
declare const SEARCH_AWS__REQUEST__ID = "aws.request.id";
/**
 * Search name for {@link attributes.AWS_REQUEST_URL}. `aws.request.url`
 *
 * @deprecated Use {@link SEARCH_URL__FULL} (`url.full`) instead
 */
declare const SEARCH_AWS__REQUEST__URL = "aws.request.url";
/**
 * Search name for {@link attributes.AWS_REQUEST_ID}. `aws.request_id`
 */
declare const SEARCH_AWS__REQUEST_ID = "aws.request_id";
/**
 * Search name for {@link attributes.AWS_S3_BUCKET}. `aws.s3.bucket`
 */
declare const SEARCH_AWS__S3__BUCKET = "aws.s3.bucket";
/**
 * Search name for {@link attributes.AWS_SECRETSMANAGER_SECRET_ARN}. `aws.secretsmanager.secret.arn`
 */
declare const SEARCH_AWS__SECRETSMANAGER__SECRET__ARN = "aws.secretsmanager.secret.arn";
/**
 * Search name for {@link attributes.AWS_SNS_TOPIC_ARN}. `aws.sns.topic.arn`
 */
declare const SEARCH_AWS__SNS__TOPIC__ARN = "aws.sns.topic.arn";
/**
 * Search name for {@link attributes.AWS_STEP_FUNCTIONS_ACTIVITY_ARN}. `aws.step_functions.activity.arn`
 */
declare const SEARCH_AWS__STEP_FUNCTIONS__ACTIVITY__ARN = "aws.step_functions.activity.arn";
/**
 * Search name for {@link attributes.AWS_STEP_FUNCTIONS_STATE_MACHINE_ARN}. `aws.step_functions.state_machine.arn`
 */
declare const SEARCH_AWS__STEP_FUNCTIONS__STATE_MACHINE__ARN = "aws.step_functions.state_machine.arn";
/**
 * Search name for {@link attributes.AWS_REGION}. `aws_region`
 *
 * @deprecated Use {@link SEARCH_CLOUD__REGION} (`cloud.region`) instead
 */
declare const SEARCH_AWS_REGION = "aws_region";
/**
 * Search name for {@link attributes.BLOCKED_MAIN_THREAD}. `blocked_main_thread`
 */
declare const SEARCH_BLOCKED_MAIN_THREAD = "blocked_main_thread";
/**
 * Search name for {@link attributes.BROWSER_BFCACHE_FRAME}. `browser.bfcache.frame`
 */
declare const SEARCH_BROWSER__BFCACHE__FRAME = "browser.bfcache.frame";
/**
 * Search name for {@link attributes.BROWSER_BFCACHE_NOT_RESTORED_REASON_COUNT}. `browser.bfcache.not_restored_reason_count`
 */
declare const SEARCH_BROWSER__BFCACHE__NOT_RESTORED_REASON_COUNT = "browser.bfcache.not_restored_reason_count";
/**
 * Search name for {@link attributes.BROWSER_BFCACHE_OUTCOME}. `browser.bfcache.outcome`
 */
declare const SEARCH_BROWSER__BFCACHE__OUTCOME = "browser.bfcache.outcome";
/**
 * Search name for {@link attributes.BROWSER_BFCACHE_REASON}. `browser.bfcache.reason`
 */
declare const SEARCH_BROWSER__BFCACHE__REASON = "browser.bfcache.reason";
/**
 * Search name for {@link attributes.BROWSER_NAME}. `browser.name`
 */
declare const SEARCH_BROWSER__NAME = "browser.name";
/**
 * Search name for {@link attributes.BROWSER_NAVIGATION_ID}. `browser.navigation.id`
 */
declare const SEARCH_BROWSER__NAVIGATION__ID = "browser.navigation.id";
/**
 * Search name for {@link attributes.BROWSER_NAVIGATION_TYPE}. `browser.navigation.type`
 */
declare const SEARCH_BROWSER__NAVIGATION__TYPE = "browser.navigation.type";
/**
 * Search name for {@link attributes.BROWSER_PAINT_TYPE}. `browser.paint.type`
 */
declare const SEARCH_BROWSER__PAINT__TYPE = "browser.paint.type";
/**
 * Search name for {@link attributes.BROWSER_PERFORMANCE_NAVIGATION_ACTIVATION_START}. `browser.performance.navigation.activation_start`
 */
declare const SEARCH_BROWSER__PERFORMANCE__NAVIGATION__ACTIVATION_START = "browser.performance.navigation.activation_start";
/**
 * Search name for {@link attributes.BROWSER_PERFORMANCE_TIME_ORIGIN}. `browser.performance.time_origin`
 */
declare const SEARCH_BROWSER__PERFORMANCE__TIME_ORIGIN = "browser.performance.time_origin";
/**
 * Search name for {@link attributes.BROWSER_REPORT_TYPE}. `browser.report.type`
 */
declare const SEARCH_BROWSER__REPORT__TYPE = "browser.report.type";
/**
 * Search name for {@link attributes.BROWSER_SCRIPT_INVOKER}. `browser.script.invoker`
 */
declare const SEARCH_BROWSER__SCRIPT__INVOKER = "browser.script.invoker";
/**
 * Search name for {@link attributes.BROWSER_SCRIPT_INVOKER_TYPE}. `browser.script.invoker_type`
 */
declare const SEARCH_BROWSER__SCRIPT__INVOKER_TYPE = "browser.script.invoker_type";
/**
 * Search name for {@link attributes.BROWSER_SCRIPT_SOURCE_CHAR_POSITION}. `browser.script.source_char_position`
 */
declare const SEARCH_BROWSER__SCRIPT__SOURCE_CHAR_POSITION = "browser.script.source_char_position";
/**
 * Search name for {@link attributes.BROWSER_VERSION}. `browser.version`
 */
declare const SEARCH_BROWSER__VERSION = "browser.version";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_CLS_REPORT_EVENT}. `browser.web_vital.cls.report_event`
 */
declare const SEARCH_BROWSER__WEB_VITAL__CLS__REPORT_EVENT = "browser.web_vital.cls.report_event";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_CLS_SOURCE_KEY}. `browser.web_vital.cls.source.<key>`
 */
declare const SEARCH_BROWSER__WEB_VITAL__CLS__SOURCE__KEY = "browser.web_vital.cls.source.<key>";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_CLS_VALUE}. `browser.web_vital.cls.value`
 */
declare const SEARCH_BROWSER__WEB_VITAL__CLS__VALUE = "browser.web_vital.cls.value";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_FCP_VALUE}. `browser.web_vital.fcp.value`
 */
declare const SEARCH_BROWSER__WEB_VITAL__FCP__VALUE = "browser.web_vital.fcp.value";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_FP_VALUE}. `browser.web_vital.fp.value`
 */
declare const SEARCH_BROWSER__WEB_VITAL__FP__VALUE = "browser.web_vital.fp.value";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_INP_VALUE}. `browser.web_vital.inp.value`
 */
declare const SEARCH_BROWSER__WEB_VITAL__INP__VALUE = "browser.web_vital.inp.value";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_LCP_ELEMENT}. `browser.web_vital.lcp.element`
 */
declare const SEARCH_BROWSER__WEB_VITAL__LCP__ELEMENT = "browser.web_vital.lcp.element";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_LCP_ID}. `browser.web_vital.lcp.id`
 */
declare const SEARCH_BROWSER__WEB_VITAL__LCP__ID = "browser.web_vital.lcp.id";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_LCP_LOAD_TIME}. `browser.web_vital.lcp.load_time`
 */
declare const SEARCH_BROWSER__WEB_VITAL__LCP__LOAD_TIME = "browser.web_vital.lcp.load_time";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_LCP_RENDER_TIME}. `browser.web_vital.lcp.render_time`
 */
declare const SEARCH_BROWSER__WEB_VITAL__LCP__RENDER_TIME = "browser.web_vital.lcp.render_time";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_LCP_REPORT_EVENT}. `browser.web_vital.lcp.report_event`
 */
declare const SEARCH_BROWSER__WEB_VITAL__LCP__REPORT_EVENT = "browser.web_vital.lcp.report_event";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_LCP_SIZE}. `browser.web_vital.lcp.size`
 */
declare const SEARCH_BROWSER__WEB_VITAL__LCP__SIZE = "browser.web_vital.lcp.size";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_LCP_URL}. `browser.web_vital.lcp.url`
 */
declare const SEARCH_BROWSER__WEB_VITAL__LCP__URL = "browser.web_vital.lcp.url";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_LCP_VALUE}. `browser.web_vital.lcp.value`
 */
declare const SEARCH_BROWSER__WEB_VITAL__LCP__VALUE = "browser.web_vital.lcp.value";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_TTFB_REQUEST_TIME}. `browser.web_vital.ttfb.request_time`
 */
declare const SEARCH_BROWSER__WEB_VITAL__TTFB__REQUEST_TIME = "browser.web_vital.ttfb.request_time";
/**
 * Search name for {@link attributes.BROWSER_WEB_VITAL_TTFB_VALUE}. `browser.web_vital.ttfb.value`
 */
declare const SEARCH_BROWSER__WEB_VITAL__TTFB__VALUE = "browser.web_vital.ttfb.value";
/**
 * Search name for {@link attributes.CACHE_HIT}. `cache.hit`
 */
declare const SEARCH_CACHE__HIT = "cache.hit";
/**
 * Search name for {@link attributes.CACHE_ITEM_AGE}. `cache.item_age`
 */
declare const SEARCH_CACHE__ITEM_AGE = "cache.item_age";
/**
 * Search name for {@link attributes.CACHE_ITEM_SIZE}. `cache.item_size`
 */
declare const SEARCH_CACHE__ITEM_SIZE = "cache.item_size";
/**
 * Search name for {@link attributes.CACHE_KEY}. `cache.key`
 */
declare const SEARCH_CACHE__KEY = "cache.key";
/**
 * Search name for {@link attributes.CACHE_OPERATION}. `cache.operation`
 */
declare const SEARCH_CACHE__OPERATION = "cache.operation";
/**
 * Search name for {@link attributes.CACHE_TAGS}. `cache.tags`
 */
declare const SEARCH_CACHE__TAGS = "cache.tags";
/**
 * Search name for {@link attributes.CACHE_TTL}. `cache.ttl`
 */
declare const SEARCH_CACHE__TTL = "cache.ttl";
/**
 * Search name for {@link attributes.CACHE_WRITE}. `cache.write`
 */
declare const SEARCH_CACHE__WRITE = "cache.write";
/**
 * Search name for {@link attributes.CHANNEL}. `channel`
 */
declare const SEARCH_CHANNEL = "channel";
/**
 * Search name for {@link attributes.CLIENT_ADDRESS}. `client.address`
 */
declare const SEARCH_CLIENT__ADDRESS = "client.address";
/**
 * Search name for {@link attributes.CLIENT_PORT}. `client.port`
 */
declare const SEARCH_CLIENT__PORT = "client.port";
/**
 * Search name for {@link attributes.SENTRY_CLIENT_SAMPLE_RATE}. `client_sample_rate`
 */
declare const SEARCH_CLIENT_SAMPLE_RATE = "client_sample_rate";
/**
 * Search name for {@link attributes.CLOUD_ACCOUNT_ID}. `cloud.account.id`
 */
declare const SEARCH_CLOUD__ACCOUNT__ID = "cloud.account.id";
/**
 * Search name for {@link attributes.CLOUD_AVAILABILITY_ZONE}. `cloud.availability_zone`
 */
declare const SEARCH_CLOUD__AVAILABILITY_ZONE = "cloud.availability_zone";
/**
 * Search name for {@link attributes.CLOUD_PLATFORM}. `cloud.platform`
 */
declare const SEARCH_CLOUD__PLATFORM = "cloud.platform";
/**
 * Search name for {@link attributes.CLOUD_PROVIDER}. `cloud.provider`
 */
declare const SEARCH_CLOUD__PROVIDER = "cloud.provider";
/**
 * Search name for {@link attributes.CLOUD_REGION}. `cloud.region`
 */
declare const SEARCH_CLOUD__REGION = "cloud.region";
/**
 * Search name for {@link attributes.CLOUD_RESOURCE_ID}. `cloud.resource_id`
 */
declare const SEARCH_CLOUD__RESOURCE_ID = "cloud.resource_id";
/**
 * Search name for {@link attributes.CLOUDFLARE_D1_DURATION}. `cloudflare.d1.duration`
 */
declare const SEARCH_CLOUDFLARE__D1__DURATION = "cloudflare.d1.duration";
/**
 * Search name for {@link attributes.CLOUDFLARE_D1_QUERY_TYPE}. `cloudflare.d1.query_type`
 *
 * @deprecated Use {@link SEARCH_DB__OPERATION__NAME} (`db.operation.name`) instead
 */
declare const SEARCH_CLOUDFLARE__D1__QUERY_TYPE = "cloudflare.d1.query_type";
/**
 * Search name for {@link attributes.CLOUDFLARE_D1_ROWS_READ}. `cloudflare.d1.rows_read`
 */
declare const SEARCH_CLOUDFLARE__D1__ROWS_READ = "cloudflare.d1.rows_read";
/**
 * Search name for {@link attributes.CLOUDFLARE_D1_ROWS_WRITTEN}. `cloudflare.d1.rows_written`
 */
declare const SEARCH_CLOUDFLARE__D1__ROWS_WRITTEN = "cloudflare.d1.rows_written";
/**
 * Search name for {@link attributes.CLOUDFLARE_DURABLE_OBJECT_QUERY_BINDINGS}. `cloudflare.durable_object.query.bindings`
 */
declare const SEARCH_CLOUDFLARE__DURABLE_OBJECT__QUERY__BINDINGS = "cloudflare.durable_object.query.bindings";
/**
 * Search name for {@link attributes.CLOUDFLARE_DURABLE_OBJECT_RESPONSE_ROWS_READ}. `cloudflare.durable_object.response.rows_read`
 */
declare const SEARCH_CLOUDFLARE__DURABLE_OBJECT__RESPONSE__ROWS_READ = "cloudflare.durable_object.response.rows_read";
/**
 * Search name for {@link attributes.CLOUDFLARE_DURABLE_OBJECT_RESPONSE_ROWS_WRITTEN}. `cloudflare.durable_object.response.rows_written`
 */
declare const SEARCH_CLOUDFLARE__DURABLE_OBJECT__RESPONSE__ROWS_WRITTEN = "cloudflare.durable_object.response.rows_written";
/**
 * Search name for {@link attributes.CLOUDFLARE_R2_BUCKET}. `cloudflare.r2.bucket`
 */
declare const SEARCH_CLOUDFLARE__R2__BUCKET = "cloudflare.r2.bucket";
/**
 * Search name for {@link attributes.CLOUDFLARE_R2_OPERATION}. `cloudflare.r2.operation`
 */
declare const SEARCH_CLOUDFLARE__R2__OPERATION = "cloudflare.r2.operation";
/**
 * Search name for {@link attributes.CLOUDFLARE_R2_REQUEST_DELIMITER}. `cloudflare.r2.request.delimiter`
 */
declare const SEARCH_CLOUDFLARE__R2__REQUEST__DELIMITER = "cloudflare.r2.request.delimiter";
/**
 * Search name for {@link attributes.CLOUDFLARE_R2_REQUEST_KEY}. `cloudflare.r2.request.key`
 */
declare const SEARCH_CLOUDFLARE__R2__REQUEST__KEY = "cloudflare.r2.request.key";
/**
 * Search name for {@link attributes.CLOUDFLARE_R2_REQUEST_PART_NUMBER}. `cloudflare.r2.request.part_number`
 */
declare const SEARCH_CLOUDFLARE__R2__REQUEST__PART_NUMBER = "cloudflare.r2.request.part_number";
/**
 * Search name for {@link attributes.CLOUDFLARE_R2_REQUEST_PREFIX}. `cloudflare.r2.request.prefix`
 */
declare const SEARCH_CLOUDFLARE__R2__REQUEST__PREFIX = "cloudflare.r2.request.prefix";
/**
 * Search name for {@link attributes.CLOUDFLARE_WORKFLOW_ATTEMPT}. `cloudflare.workflow.attempt`
 */
declare const SEARCH_CLOUDFLARE__WORKFLOW__ATTEMPT = "cloudflare.workflow.attempt";
/**
 * Search name for {@link attributes.CLOUDFLARE_WORKFLOW_RETRIES_BACKOFF}. `cloudflare.workflow.retries.backoff`
 */
declare const SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__BACKOFF = "cloudflare.workflow.retries.backoff";
/**
 * Search name for {@link attributes.CLOUDFLARE_WORKFLOW_RETRIES_DELAY}. `cloudflare.workflow.retries.delay`
 */
declare const SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__DELAY = "cloudflare.workflow.retries.delay";
/**
 * Search name for {@link attributes.CLOUDFLARE_WORKFLOW_RETRIES_LIMIT}. `cloudflare.workflow.retries.limit`
 */
declare const SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__LIMIT = "cloudflare.workflow.retries.limit";
/**
 * Search name for {@link attributes.CLOUDFLARE_WORKFLOW_TIMEOUT}. `cloudflare.workflow.timeout`
 */
declare const SEARCH_CLOUDFLARE__WORKFLOW__TIMEOUT = "cloudflare.workflow.timeout";
/**
 * Search name for {@link attributes.CLS}. `cls`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__CLS__VALUE} (`browser.web_vital.cls.value`) instead
 */
declare const SEARCH_CLS = "cls";
/**
 * Search name for {@link attributes.CLS_SOURCE_KEY}. `cls.source.<key>`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__CLS__SOURCE__KEY} (`browser.web_vital.cls.source.<key>`) instead
 */
declare const SEARCH_CLS__SOURCE__KEY = "cls.source.<key>";
/**
 * Search name for {@link attributes.CODE}. `code`
 *
 * @deprecated Use {@link SEARCH_RPC__RESPONSE__STATUS_CODE} (`rpc.response.status_code`) instead
 */
declare const SEARCH_CODE = "code";
/**
 * Search name for {@link attributes.CODE_FILE_PATH}. `code.file.path`
 */
declare const SEARCH_CODE__FILE__PATH = "code.file.path";
/**
 * Search name for {@link attributes.CODE_FILEPATH}. `code.filepath`
 *
 * @deprecated Use {@link SEARCH_CODE__FILE__PATH} (`code.file.path`) instead
 */
declare const SEARCH_CODE__FILEPATH = "code.filepath";
/**
 * Search name for {@link attributes.CODE_FUNCTION}. `code.function`
 */
declare const SEARCH_CODE__FUNCTION = "code.function";
/**
 * Search name for {@link attributes.CODE_FUNCTION_NAME}. `code.function.name`
 */
declare const SEARCH_CODE__FUNCTION__NAME = "code.function.name";
/**
 * Search name for {@link attributes.CODE_LINE_NUMBER}. `code.line.number`
 */
declare const SEARCH_CODE__LINE__NUMBER = "code.line.number";
/**
 * Search name for {@link attributes.CODE_LINENO}. `code.lineno`
 *
 * @deprecated Use {@link SEARCH_CODE__LINE__NUMBER} (`code.line.number`) instead
 */
declare const SEARCH_CODE__LINENO = "code.lineno";
/**
 * Search name for {@link attributes.CODE_NAMESPACE}. `code.namespace`
 */
declare const SEARCH_CODE__NAMESPACE = "code.namespace";
/**
 * Search name for {@link attributes.CONNECTION_RTT}. `connection.rtt`
 *
 * @deprecated Use {@link SEARCH_NETWORK__CONNECTION__RTT} (`network.connection.rtt`) instead
 */
declare const SEARCH_CONNECTION__RTT = "connection.rtt";
/**
 * Search name for {@link attributes.CONNECTIONTYPE}. `connectionType`
 *
 * @deprecated Use {@link SEARCH_NETWORK__CONNECTION__TYPE} (`network.connection.type`) instead
 */
declare const SEARCH_CONNECTIONTYPE = "connectionType";
/**
 * Search name for {@link attributes.CULTURE_CALENDAR}. `culture.calendar`
 */
declare const SEARCH_CULTURE__CALENDAR = "culture.calendar";
/**
 * Search name for {@link attributes.CULTURE_DISPLAY_NAME}. `culture.display_name`
 */
declare const SEARCH_CULTURE__DISPLAY_NAME = "culture.display_name";
/**
 * Search name for {@link attributes.CULTURE_IS_24_HOUR_FORMAT}. `culture.is_24_hour_format`
 */
declare const SEARCH_CULTURE__IS_24_HOUR_FORMAT = "culture.is_24_hour_format";
/**
 * Search name for {@link attributes.CULTURE_LOCALE}. `culture.locale`
 */
declare const SEARCH_CULTURE__LOCALE = "culture.locale";
/**
 * Search name for {@link attributes.CULTURE_TIMEZONE}. `culture.timezone`
 */
declare const SEARCH_CULTURE__TIMEZONE = "culture.timezone";
/**
 * Search name for {@link attributes.DB_COLLECTION_NAME}. `db.collection.name`
 */
declare const SEARCH_DB__COLLECTION__NAME = "db.collection.name";
/**
 * Search name for {@link attributes.DB_CONNECTION_STRING}. `db.connection_string`
 *
 * @deprecated
 */
declare const SEARCH_DB__CONNECTION_STRING = "db.connection_string";
/**
 * Search name for {@link attributes.DB_DRIVER_NAME}. `db.driver.name`
 */
declare const SEARCH_DB__DRIVER__NAME = "db.driver.name";
/**
 * Search name for {@link attributes.DB_MONGODB_COLLECTION}. `db.mongodb.collection`
 *
 * @deprecated Use {@link SEARCH_DB__COLLECTION__NAME} (`db.collection.name`) instead
 */
declare const SEARCH_DB__MONGODB__COLLECTION = "db.mongodb.collection";
/**
 * Search name for {@link attributes.DB_NAME}. `db.name`
 *
 * @deprecated Use {@link SEARCH_DB__NAMESPACE} (`db.namespace`) instead
 */
declare const SEARCH_DB__NAME = "db.name";
/**
 * Search name for {@link attributes.DB_NAMESPACE}. `db.namespace`
 */
declare const SEARCH_DB__NAMESPACE = "db.namespace";
/**
 * Search name for {@link attributes.DB_OPERATION}. `db.operation`
 *
 * @deprecated Use {@link SEARCH_DB__OPERATION__NAME} (`db.operation.name`) instead
 */
declare const SEARCH_DB__OPERATION = "db.operation";
/**
 * Search name for {@link attributes.DB_OPERATION_BATCH_SIZE}. `db.operation.batch.size`
 */
declare const SEARCH_DB__OPERATION__BATCH__SIZE = "db.operation.batch.size";
/**
 * Search name for {@link attributes.DB_OPERATION_NAME}. `db.operation.name`
 */
declare const SEARCH_DB__OPERATION__NAME = "db.operation.name";
/**
 * Search name for {@link attributes.DB_PARAMS}. `db.params`
 *
 * @deprecated Use {@link SEARCH_DB__QUERY__PARAMETER__KEY} (`db.query.parameter.<key>`) instead
 */
declare const SEARCH_DB__PARAMS = "db.params";
/**
 * Search name for {@link attributes.DB_QUERY_PARAMETER_KEY}. `db.query.parameter.<key>`
 */
declare const SEARCH_DB__QUERY__PARAMETER__KEY = "db.query.parameter.<key>";
/**
 * Search name for {@link attributes.DB_QUERY_SUMMARY}. `db.query.summary`
 */
declare const SEARCH_DB__QUERY__SUMMARY = "db.query.summary";
/**
 * Search name for {@link attributes.DB_QUERY_TEXT}. `db.query.text`
 */
declare const SEARCH_DB__QUERY__TEXT = "db.query.text";
/**
 * Search name for {@link attributes.DB_REDIS_CONNECTION}. `db.redis.connection`
 */
declare const SEARCH_DB__REDIS__CONNECTION = "db.redis.connection";
/**
 * Search name for {@link attributes.DB_REDIS_KEY}. `db.redis.key`
 */
declare const SEARCH_DB__REDIS__KEY = "db.redis.key";
/**
 * Search name for {@link attributes.DB_REDIS_PARAMETERS}. `db.redis.parameters`
 */
declare const SEARCH_DB__REDIS__PARAMETERS = "db.redis.parameters";
/**
 * Search name for {@link attributes.DB_RESPONSE_STATUS_CODE}. `db.response.status_code`
 */
declare const SEARCH_DB__RESPONSE__STATUS_CODE = "db.response.status_code";
/**
 * Search name for {@link attributes.DB_SQL_BINDINGS}. `db.sql.bindings`
 *
 * @deprecated Use {@link SEARCH_DB__QUERY__PARAMETER__KEY} (`db.query.parameter.<key>`) instead
 */
declare const SEARCH_DB__SQL__BINDINGS = "db.sql.bindings";
/**
 * Search name for {@link attributes.DB_STATEMENT}. `db.statement`
 *
 * @deprecated Use {@link SEARCH_DB__QUERY__TEXT} (`db.query.text`) instead
 */
declare const SEARCH_DB__STATEMENT = "db.statement";
/**
 * Search name for {@link attributes.DB_STORED_PROCEDURE_NAME}. `db.stored_procedure.name`
 */
declare const SEARCH_DB__STORED_PROCEDURE__NAME = "db.stored_procedure.name";
/**
 * Search name for {@link attributes.DB_SYSTEM}. `db.system`
 */
declare const SEARCH_DB__SYSTEM = "db.system";
/**
 * Search name for {@link attributes.DB_SYSTEM_NAME}. `db.system.name`
 */
declare const SEARCH_DB__SYSTEM__NAME = "db.system.name";
/**
 * Search name for {@link attributes.DB_USER}. `db.user`
 */
declare const SEARCH_DB__USER = "db.user";
/**
 * Search name for {@link attributes.DEVICE_ARCHS}. `device.archs`
 */
declare const SEARCH_DEVICE__ARCHS = "device.archs";
/**
 * Search name for {@link attributes.DEVICE_BATTERY_LEVEL}. `device.battery_level`
 */
declare const SEARCH_DEVICE__BATTERY_LEVEL = "device.battery_level";
/**
 * Search name for {@link attributes.DEVICE_BATTERY_TEMPERATURE}. `device.battery_temperature`
 */
declare const SEARCH_DEVICE__BATTERY_TEMPERATURE = "device.battery_temperature";
/**
 * Search name for {@link attributes.DEVICE_BOOT_TIME}. `device.boot_time`
 */
declare const SEARCH_DEVICE__BOOT_TIME = "device.boot_time";
/**
 * Search name for {@link attributes.DEVICE_BRAND}. `device.brand`
 */
declare const SEARCH_DEVICE__BRAND = "device.brand";
/**
 * Search name for {@link attributes.DEVICE_CHARGING}. `device.charging`
 */
declare const SEARCH_DEVICE__CHARGING = "device.charging";
/**
 * Search name for {@link attributes.DEVICE_CHIPSET}. `device.chipset`
 */
declare const SEARCH_DEVICE__CHIPSET = "device.chipset";
/**
 * Search name for {@link attributes.DEVICE_CLASS}. `device.class`
 */
declare const SEARCH_DEVICE__CLASS = "device.class";
/**
 * Search name for {@link attributes.DEVICE_CONNECTION_TYPE}. `device.connection_type`
 *
 * @deprecated Use {@link SEARCH_NETWORK__CONNECTION__TYPE} (`network.connection.type`) instead
 */
declare const SEARCH_DEVICE__CONNECTION_TYPE = "device.connection_type";
/**
 * Search name for {@link attributes.DEVICE_CPU_DESCRIPTION}. `device.cpu_description`
 */
declare const SEARCH_DEVICE__CPU_DESCRIPTION = "device.cpu_description";
/**
 * Search name for {@link attributes.DEVICE_EXTERNAL_FREE_STORAGE}. `device.external_free_storage`
 */
declare const SEARCH_DEVICE__EXTERNAL_FREE_STORAGE = "device.external_free_storage";
/**
 * Search name for {@link attributes.DEVICE_EXTERNAL_STORAGE_SIZE}. `device.external_storage_size`
 */
declare const SEARCH_DEVICE__EXTERNAL_STORAGE_SIZE = "device.external_storage_size";
/**
 * Search name for {@link attributes.DEVICE_FAMILY}. `device.family`
 */
declare const SEARCH_DEVICE__FAMILY = "device.family";
/**
 * Search name for {@link attributes.DEVICE_FREE_MEMORY}. `device.free_memory`
 */
declare const SEARCH_DEVICE__FREE_MEMORY = "device.free_memory";
/**
 * Search name for {@link attributes.DEVICE_FREE_STORAGE}. `device.free_storage`
 */
declare const SEARCH_DEVICE__FREE_STORAGE = "device.free_storage";
/**
 * Search name for {@link attributes.DEVICE_ID}. `device.id`
 */
declare const SEARCH_DEVICE__ID = "device.id";
/**
 * Search name for {@link attributes.DEVICE_LOCALE}. `device.locale`
 */
declare const SEARCH_DEVICE__LOCALE = "device.locale";
/**
 * Search name for {@link attributes.DEVICE_LOW_MEMORY}. `device.low_memory`
 */
declare const SEARCH_DEVICE__LOW_MEMORY = "device.low_memory";
/**
 * Search name for {@link attributes.DEVICE_LOW_POWER_MODE}. `device.low_power_mode`
 */
declare const SEARCH_DEVICE__LOW_POWER_MODE = "device.low_power_mode";
/**
 * Search name for {@link attributes.DEVICE_MANUFACTURER}. `device.manufacturer`
 */
declare const SEARCH_DEVICE__MANUFACTURER = "device.manufacturer";
/**
 * Search name for {@link attributes.DEVICE_MEMORY_ESTIMATED_CAPACITY}. `device.memory.estimated_capacity`
 */
declare const SEARCH_DEVICE__MEMORY__ESTIMATED_CAPACITY = "device.memory.estimated_capacity";
/**
 * Search name for {@link attributes.DEVICE_MEMORY_SIZE}. `device.memory_size`
 */
declare const SEARCH_DEVICE__MEMORY_SIZE = "device.memory_size";
/**
 * Search name for {@link attributes.DEVICE_MODEL}. `device.model`
 */
declare const SEARCH_DEVICE__MODEL = "device.model";
/**
 * Search name for {@link attributes.DEVICE_MODEL_ID}. `device.model_id`
 */
declare const SEARCH_DEVICE__MODEL_ID = "device.model_id";
/**
 * Search name for {@link attributes.DEVICE_NAME}. `device.name`
 */
declare const SEARCH_DEVICE__NAME = "device.name";
/**
 * Search name for {@link attributes.DEVICE_ONLINE}. `device.online`
 */
declare const SEARCH_DEVICE__ONLINE = "device.online";
/**
 * Search name for {@link attributes.DEVICE_ORIENTATION}. `device.orientation`
 */
declare const SEARCH_DEVICE__ORIENTATION = "device.orientation";
/**
 * Search name for {@link attributes.DEVICE_PROCESSOR_COUNT}. `device.processor_count`
 */
declare const SEARCH_DEVICE__PROCESSOR_COUNT = "device.processor_count";
/**
 * Search name for {@link attributes.DEVICE_PROCESSOR_FREQUENCY}. `device.processor_frequency`
 */
declare const SEARCH_DEVICE__PROCESSOR_FREQUENCY = "device.processor_frequency";
/**
 * Search name for {@link attributes.DEVICE_SCREEN_DENSITY}. `device.screen_density`
 */
declare const SEARCH_DEVICE__SCREEN_DENSITY = "device.screen_density";
/**
 * Search name for {@link attributes.DEVICE_SCREEN_DPI}. `device.screen_dpi`
 */
declare const SEARCH_DEVICE__SCREEN_DPI = "device.screen_dpi";
/**
 * Search name for {@link attributes.DEVICE_SCREEN_HEIGHT_PIXELS}. `device.screen_height_pixels`
 */
declare const SEARCH_DEVICE__SCREEN_HEIGHT_PIXELS = "device.screen_height_pixels";
/**
 * Search name for {@link attributes.DEVICE_SCREEN_WIDTH_PIXELS}. `device.screen_width_pixels`
 */
declare const SEARCH_DEVICE__SCREEN_WIDTH_PIXELS = "device.screen_width_pixels";
/**
 * Search name for {@link attributes.DEVICE_SIMULATOR}. `device.simulator`
 */
declare const SEARCH_DEVICE__SIMULATOR = "device.simulator";
/**
 * Search name for {@link attributes.DEVICE_STORAGE_SIZE}. `device.storage_size`
 */
declare const SEARCH_DEVICE__STORAGE_SIZE = "device.storage_size";
/**
 * Search name for {@link attributes.DEVICE_THERMAL_STATE}. `device.thermal_state`
 */
declare const SEARCH_DEVICE__THERMAL_STATE = "device.thermal_state";
/**
 * Search name for {@link attributes.DEVICE_TIMEZONE}. `device.timezone`
 */
declare const SEARCH_DEVICE__TIMEZONE = "device.timezone";
/**
 * Search name for {@link attributes.DEVICE_USABLE_MEMORY}. `device.usable_memory`
 */
declare const SEARCH_DEVICE__USABLE_MEMORY = "device.usable_memory";
/**
 * Search name for {@link attributes.DEVICEMEMORY}. `deviceMemory`
 *
 * @deprecated Use {@link SEARCH_DEVICE__MEMORY__ESTIMATED_CAPACITY} (`device.memory.estimated_capacity`) instead
 */
declare const SEARCH_DEVICEMEMORY = "deviceMemory";
/**
 * Search name for {@link attributes.DIST}. `dist`
 *
 * @deprecated Use {@link SEARCH_SENTRY__DIST} (`sentry.dist`) instead
 */
declare const SEARCH_DIST = "dist";
/**
 * Search name for {@link attributes.DJANGO_FUNCTION_NAME}. `django.function_name`
 *
 * @deprecated Use {@link SEARCH_CODE__FUNCTION__NAME} (`code.function.name`) instead
 */
declare const SEARCH_DJANGO__FUNCTION_NAME = "django.function_name";
/**
 * Search name for {@link attributes.DJANGO_MIDDLEWARE_NAME}. `django.middleware_name`
 *
 * @deprecated Use {@link SEARCH_MIDDLEWARE__NAME} (`middleware.name`) instead
 */
declare const SEARCH_DJANGO__MIDDLEWARE_NAME = "django.middleware_name";
/**
 * Search name for {@link attributes.EFFECTIVECONNECTIONTYPE}. `effectiveConnectionType`
 *
 * @deprecated Use {@link SEARCH_NETWORK__CONNECTION__EFFECTIVE_TYPE} (`network.connection.effective_type`) instead
 */
declare const SEARCH_EFFECTIVECONNECTIONTYPE = "effectiveConnectionType";
/**
 * Search name for {@link attributes.SENTRY_ENVIRONMENT}. `environment`
 */
declare const SEARCH_ENVIRONMENT = "environment";
/**
 * Search name for {@link attributes.ERROR_TYPE}. `error.type`
 */
declare const SEARCH_ERROR__TYPE = "error.type";
/**
 * Search name for {@link attributes.EVENT_ID}. `event.id`
 */
declare const SEARCH_EVENT__ID = "event.id";
/**
 * Search name for {@link attributes.EVENT_NAME}. `event.name`
 */
declare const SEARCH_EVENT__NAME = "event.name";
/**
 * Search name for {@link attributes.EXCEPTION_ESCAPED}. `exception.escaped`
 */
declare const SEARCH_EXCEPTION__ESCAPED = "exception.escaped";
/**
 * Search name for {@link attributes.EXCEPTION_MESSAGE}. `exception.message`
 */
declare const SEARCH_EXCEPTION__MESSAGE = "exception.message";
/**
 * Search name for {@link attributes.EXCEPTION_STACKTRACE}. `exception.stacktrace`
 */
declare const SEARCH_EXCEPTION__STACKTRACE = "exception.stacktrace";
/**
 * Search name for {@link attributes.EXCEPTION_TYPE}. `exception.type`
 */
declare const SEARCH_EXCEPTION__TYPE = "exception.type";
/**
 * Search name for {@link attributes.FAAS_COLDSTART}. `faas.coldstart`
 */
declare const SEARCH_FAAS__COLDSTART = "faas.coldstart";
/**
 * Search name for {@link attributes.FAAS_CRON}. `faas.cron`
 */
declare const SEARCH_FAAS__CRON = "faas.cron";
/**
 * Search name for {@link attributes.FAAS_DURATION_IN_MS}. `faas.duration_in_ms`
 */
declare const SEARCH_FAAS__DURATION_IN_MS = "faas.duration_in_ms";
/**
 * Search name for {@link attributes.FAAS_ENTRY_POINT}. `faas.entry_point`
 */
declare const SEARCH_FAAS__ENTRY_POINT = "faas.entry_point";
/**
 * Search name for {@link attributes.FAAS_EXECUTION}. `faas.execution`
 *
 * @deprecated Use {@link SEARCH_FAAS__INVOCATION_ID} (`faas.invocation_id`) instead
 */
declare const SEARCH_FAAS__EXECUTION = "faas.execution";
/**
 * Search name for {@link attributes.FAAS_ID}. `faas.id`
 *
 * @deprecated Use {@link SEARCH_CLOUD__RESOURCE_ID} (`cloud.resource_id`) instead
 */
declare const SEARCH_FAAS__ID = "faas.id";
/**
 * Search name for {@link attributes.FAAS_IDENTITY}. `faas.identity`
 */
declare const SEARCH_FAAS__IDENTITY = "faas.identity";
/**
 * Search name for {@link attributes.FAAS_INVOCATION_ID}. `faas.invocation_id`
 */
declare const SEARCH_FAAS__INVOCATION_ID = "faas.invocation_id";
/**
 * Search name for {@link attributes.FAAS_INVOKED_NAME}. `faas.invoked_name`
 */
declare const SEARCH_FAAS__INVOKED_NAME = "faas.invoked_name";
/**
 * Search name for {@link attributes.FAAS_INVOKED_PROVIDER}. `faas.invoked_provider`
 */
declare const SEARCH_FAAS__INVOKED_PROVIDER = "faas.invoked_provider";
/**
 * Search name for {@link attributes.FAAS_INVOKED_REGION}. `faas.invoked_region`
 */
declare const SEARCH_FAAS__INVOKED_REGION = "faas.invoked_region";
/**
 * Search name for {@link attributes.FAAS_NAME}. `faas.name`
 */
declare const SEARCH_FAAS__NAME = "faas.name";
/**
 * Search name for {@link attributes.FAAS_TIME}. `faas.time`
 */
declare const SEARCH_FAAS__TIME = "faas.time";
/**
 * Search name for {@link attributes.FAAS_TRIGGER}. `faas.trigger`
 */
declare const SEARCH_FAAS__TRIGGER = "faas.trigger";
/**
 * Search name for {@link attributes.FAAS_VERSION}. `faas.version`
 */
declare const SEARCH_FAAS__VERSION = "faas.version";
/**
 * Search name for {@link attributes.FCP}. `fcp`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__FCP__VALUE} (`browser.web_vital.fcp.value`) instead
 */
declare const SEARCH_FCP = "fcp";
/**
 * Search name for {@link attributes.FILE_PATH}. `file.path`
 */
declare const SEARCH_FILE__PATH = "file.path";
/**
 * Search name for {@link attributes.FILE_SIZE}. `file.size`
 */
declare const SEARCH_FILE__SIZE = "file.size";
/**
 * Search name for {@link attributes.FLAG_EVALUATION_KEY}. `flag.evaluation.<key>`
 */
declare const SEARCH_FLAG__EVALUATION__KEY = "flag.evaluation.<key>";
/**
 * Search name for {@link attributes.FP}. `fp`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__FP__VALUE} (`browser.web_vital.fp.value`) instead
 */
declare const SEARCH_FP = "fp";
/**
 * Search name for {@link attributes.FRAMES_DELAY}. `frames.delay`
 *
 * @deprecated Use {@link SEARCH_MOBILE__FRAMES_DELAY} (`mobile.frames_delay`) instead
 */
declare const SEARCH_FRAMES__DELAY = "frames.delay";
/**
 * Search name for {@link attributes.FRAMES_FROZEN}. `frames.frozen`
 *
 * @deprecated Use {@link SEARCH_MOBILE__FROZEN_FRAMES} (`mobile.frozen_frames`) instead
 */
declare const SEARCH_FRAMES__FROZEN = "frames.frozen";
/**
 * Search name for {@link attributes.FRAMES_SLOW}. `frames.slow`
 *
 * @deprecated Use {@link SEARCH_MOBILE__SLOW_FRAMES} (`mobile.slow_frames`) instead
 */
declare const SEARCH_FRAMES__SLOW = "frames.slow";
/**
 * Search name for {@link attributes.FRAMES_TOTAL}. `frames.total`
 *
 * @deprecated Use {@link SEARCH_MOBILE__TOTAL_FRAMES} (`mobile.total_frames`) instead
 */
declare const SEARCH_FRAMES__TOTAL = "frames.total";
/**
 * Search name for {@link attributes.FRAMES_FROZEN_RATE}. `frames_frozen_rate`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__FRAMES__FROZEN__RATE} (`app.vitals.frames.frozen.rate`) instead
 */
declare const SEARCH_FRAMES_FROZEN_RATE = "frames_frozen_rate";
/**
 * Search name for {@link attributes.FRAMES_SLOW_RATE}. `frames_slow_rate`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__FRAMES__SLOW__RATE} (`app.vitals.frames.slow.rate`) instead
 */
declare const SEARCH_FRAMES_SLOW_RATE = "frames_slow_rate";
/**
 * Search name for {@link attributes.FS_ERROR}. `fs_error`
 *
 * @deprecated Use {@link SEARCH_ERROR__TYPE} (`error.type`) instead
 */
declare const SEARCH_FS_ERROR = "fs_error";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_EVENT_ID}. `gcp.function.context.event_id`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__EVENT_ID = "gcp.function.context.event_id";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_EVENT_TYPE}. `gcp.function.context.event_type`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__EVENT_TYPE = "gcp.function.context.event_type";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_ID}. `gcp.function.context.id`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__ID = "gcp.function.context.id";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_RESOURCE}. `gcp.function.context.resource`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__RESOURCE = "gcp.function.context.resource";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_SOURCE}. `gcp.function.context.source`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__SOURCE = "gcp.function.context.source";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_SPECVERSION}. `gcp.function.context.specversion`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__SPECVERSION = "gcp.function.context.specversion";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_TIME}. `gcp.function.context.time`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__TIME = "gcp.function.context.time";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_TIMESTAMP}. `gcp.function.context.timestamp`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__TIMESTAMP = "gcp.function.context.timestamp";
/**
 * Search name for {@link attributes.GCP_FUNCTION_CONTEXT_TYPE}. `gcp.function.context.type`
 */
declare const SEARCH_GCP__FUNCTION__CONTEXT__TYPE = "gcp.function.context.type";
/**
 * Search name for {@link attributes.GCP_PROJECT_ID}. `gcp.project.id`
 */
declare const SEARCH_GCP__PROJECT__ID = "gcp.project.id";
/**
 * Search name for {@link attributes.GCP_REGION}. `gcp_region`
 *
 * @deprecated Use {@link SEARCH_CLOUD__REGION} (`cloud.region`) instead
 */
declare const SEARCH_GCP_REGION = "gcp_region";
/**
 * Search name for {@link attributes.GEN_AI_AGENT_NAME}. `gen_ai.agent.name`
 */
declare const SEARCH_GEN_AI__AGENT__NAME = "gen_ai.agent.name";
/**
 * Search name for {@link attributes.GEN_AI_CONTEXT_UTILIZATION}. `gen_ai.context.utilization`
 */
declare const SEARCH_GEN_AI__CONTEXT__UTILIZATION = "gen_ai.context.utilization";
/**
 * Search name for {@link attributes.GEN_AI_CONTEXT_WINDOW_SIZE}. `gen_ai.context.window_size`
 */
declare const SEARCH_GEN_AI__CONTEXT__WINDOW_SIZE = "gen_ai.context.window_size";
/**
 * Search name for {@link attributes.GEN_AI_CONVERSATION_ID}. `gen_ai.conversation.id`
 */
declare const SEARCH_GEN_AI__CONVERSATION__ID = "gen_ai.conversation.id";
/**
 * Search name for {@link attributes.GEN_AI_COST_CACHE_CREATION_INPUT_TOKENS}. `gen_ai.cost.cache_creation.input_tokens`
 */
declare const SEARCH_GEN_AI__COST__CACHE_CREATION__INPUT_TOKENS = "gen_ai.cost.cache_creation.input_tokens";
/**
 * Search name for {@link attributes.GEN_AI_COST_CACHE_READ_INPUT_TOKENS}. `gen_ai.cost.cache_read.input_tokens`
 */
declare const SEARCH_GEN_AI__COST__CACHE_READ__INPUT_TOKENS = "gen_ai.cost.cache_read.input_tokens";
/**
 * Search name for {@link attributes.GEN_AI_COST_INPUT_TOKENS}. `gen_ai.cost.input_tokens`
 */
declare const SEARCH_GEN_AI__COST__INPUT_TOKENS = "gen_ai.cost.input_tokens";
/**
 * Search name for {@link attributes.GEN_AI_COST_OUTPUT_TOKENS}. `gen_ai.cost.output_tokens`
 */
declare const SEARCH_GEN_AI__COST__OUTPUT_TOKENS = "gen_ai.cost.output_tokens";
/**
 * Search name for {@link attributes.GEN_AI_COST_REASONING_OUTPUT_TOKENS}. `gen_ai.cost.reasoning.output_tokens`
 */
declare const SEARCH_GEN_AI__COST__REASONING__OUTPUT_TOKENS = "gen_ai.cost.reasoning.output_tokens";
/**
 * Search name for {@link attributes.GEN_AI_COST_TOTAL_TOKENS}. `gen_ai.cost.total_tokens`
 */
declare const SEARCH_GEN_AI__COST__TOTAL_TOKENS = "gen_ai.cost.total_tokens";
/**
 * Search name for {@link attributes.GEN_AI_EMBEDDINGS_INPUT}. `gen_ai.embeddings.input`
 */
declare const SEARCH_GEN_AI__EMBEDDINGS__INPUT = "gen_ai.embeddings.input";
/**
 * Search name for {@link attributes.GEN_AI_FUNCTION_ID}. `gen_ai.function_id`
 */
declare const SEARCH_GEN_AI__FUNCTION_ID = "gen_ai.function_id";
/**
 * Search name for {@link attributes.GEN_AI_INPUT_MESSAGES}. `gen_ai.input.messages`
 */
declare const SEARCH_GEN_AI__INPUT__MESSAGES = "gen_ai.input.messages";
/**
 * Search name for {@link attributes.GEN_AI_OPERATION_NAME}. `gen_ai.operation.name`
 */
declare const SEARCH_GEN_AI__OPERATION__NAME = "gen_ai.operation.name";
/**
 * Search name for {@link attributes.GEN_AI_OPERATION_TYPE}. `gen_ai.operation.type`
 */
declare const SEARCH_GEN_AI__OPERATION__TYPE = "gen_ai.operation.type";
/**
 * Search name for {@link attributes.GEN_AI_OUTPUT_MESSAGES}. `gen_ai.output.messages`
 */
declare const SEARCH_GEN_AI__OUTPUT__MESSAGES = "gen_ai.output.messages";
/**
 * Search name for {@link attributes.GEN_AI_PIPELINE_NAME}. `gen_ai.pipeline.name`
 */
declare const SEARCH_GEN_AI__PIPELINE__NAME = "gen_ai.pipeline.name";
/**
 * Search name for {@link attributes.GEN_AI_PROMPT}. `gen_ai.prompt`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__INPUT__MESSAGES} (`gen_ai.input.messages`) instead
 */
declare const SEARCH_GEN_AI__PROMPT = "gen_ai.prompt";
/**
 * Search name for {@link attributes.GEN_AI_PROMPT_NAME}. `gen_ai.prompt.name`
 */
declare const SEARCH_GEN_AI__PROMPT__NAME = "gen_ai.prompt.name";
/**
 * Search name for {@link attributes.GEN_AI_PROVIDER_NAME}. `gen_ai.provider.name`
 */
declare const SEARCH_GEN_AI__PROVIDER__NAME = "gen_ai.provider.name";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_AVAILABLE_TOOLS}. `gen_ai.request.available_tools`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__DEFINITIONS} (`gen_ai.tool.definitions`) instead
 */
declare const SEARCH_GEN_AI__REQUEST__AVAILABLE_TOOLS = "gen_ai.request.available_tools";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_FREQUENCY_PENALTY}. `gen_ai.request.frequency_penalty`
 */
declare const SEARCH_GEN_AI__REQUEST__FREQUENCY_PENALTY = "gen_ai.request.frequency_penalty";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_MAX_TOKENS}. `gen_ai.request.max_tokens`
 */
declare const SEARCH_GEN_AI__REQUEST__MAX_TOKENS = "gen_ai.request.max_tokens";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_MESSAGES}. `gen_ai.request.messages`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__INPUT__MESSAGES} (`gen_ai.input.messages`) instead
 */
declare const SEARCH_GEN_AI__REQUEST__MESSAGES = "gen_ai.request.messages";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_MODEL}. `gen_ai.request.model`
 */
declare const SEARCH_GEN_AI__REQUEST__MODEL = "gen_ai.request.model";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_PRESENCE_PENALTY}. `gen_ai.request.presence_penalty`
 */
declare const SEARCH_GEN_AI__REQUEST__PRESENCE_PENALTY = "gen_ai.request.presence_penalty";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_REASONING_LEVEL}. `gen_ai.request.reasoning.level`
 */
declare const SEARCH_GEN_AI__REQUEST__REASONING__LEVEL = "gen_ai.request.reasoning.level";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_SCHEMA}. `gen_ai.request.schema`
 *
 * @deprecated
 */
declare const SEARCH_GEN_AI__REQUEST__SCHEMA = "gen_ai.request.schema";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_SEED}. `gen_ai.request.seed`
 */
declare const SEARCH_GEN_AI__REQUEST__SEED = "gen_ai.request.seed";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_STOP_SEQUENCES}. `gen_ai.request.stop_sequences`
 */
declare const SEARCH_GEN_AI__REQUEST__STOP_SEQUENCES = "gen_ai.request.stop_sequences";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_TEMPERATURE}. `gen_ai.request.temperature`
 */
declare const SEARCH_GEN_AI__REQUEST__TEMPERATURE = "gen_ai.request.temperature";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_TOP_K}. `gen_ai.request.top_k`
 */
declare const SEARCH_GEN_AI__REQUEST__TOP_K = "gen_ai.request.top_k";
/**
 * Search name for {@link attributes.GEN_AI_REQUEST_TOP_P}. `gen_ai.request.top_p`
 */
declare const SEARCH_GEN_AI__REQUEST__TOP_P = "gen_ai.request.top_p";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_FINISH_REASON}. `gen_ai.response.finish_reason`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__RESPONSE__FINISH_REASONS} (`gen_ai.response.finish_reasons`) instead
 */
declare const SEARCH_GEN_AI__RESPONSE__FINISH_REASON = "gen_ai.response.finish_reason";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_FINISH_REASONS}. `gen_ai.response.finish_reasons`
 */
declare const SEARCH_GEN_AI__RESPONSE__FINISH_REASONS = "gen_ai.response.finish_reasons";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_ID}. `gen_ai.response.id`
 */
declare const SEARCH_GEN_AI__RESPONSE__ID = "gen_ai.response.id";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_MODEL}. `gen_ai.response.model`
 */
declare const SEARCH_GEN_AI__RESPONSE__MODEL = "gen_ai.response.model";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_OBJECT}. `gen_ai.response.object`
 *
 * @deprecated
 */
declare const SEARCH_GEN_AI__RESPONSE__OBJECT = "gen_ai.response.object";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_STREAMING}. `gen_ai.response.streaming`
 */
declare const SEARCH_GEN_AI__RESPONSE__STREAMING = "gen_ai.response.streaming";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_TEXT}. `gen_ai.response.text`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__OUTPUT__MESSAGES} (`gen_ai.output.messages`) instead
 */
declare const SEARCH_GEN_AI__RESPONSE__TEXT = "gen_ai.response.text";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_TIME_TO_FIRST_CHUNK}. `gen_ai.response.time_to_first_chunk`
 */
declare const SEARCH_GEN_AI__RESPONSE__TIME_TO_FIRST_CHUNK = "gen_ai.response.time_to_first_chunk";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_TIME_TO_FIRST_TOKEN}. `gen_ai.response.time_to_first_token`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__RESPONSE__TIME_TO_FIRST_CHUNK} (`gen_ai.response.time_to_first_chunk`) instead
 */
declare const SEARCH_GEN_AI__RESPONSE__TIME_TO_FIRST_TOKEN = "gen_ai.response.time_to_first_token";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_TOKENS_PER_SECOND}. `gen_ai.response.tokens_per_second`
 */
declare const SEARCH_GEN_AI__RESPONSE__TOKENS_PER_SECOND = "gen_ai.response.tokens_per_second";
/**
 * Search name for {@link attributes.GEN_AI_RESPONSE_TOOL_CALLS}. `gen_ai.response.tool_calls`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__OUTPUT__MESSAGES} (`gen_ai.output.messages`) instead
 */
declare const SEARCH_GEN_AI__RESPONSE__TOOL_CALLS = "gen_ai.response.tool_calls";
/**
 * Search name for {@link attributes.GEN_AI_SYSTEM}. `gen_ai.system`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__PROVIDER__NAME} (`gen_ai.provider.name`) instead
 */
declare const SEARCH_GEN_AI__SYSTEM = "gen_ai.system";
/**
 * Search name for {@link attributes.GEN_AI_SYSTEM_MESSAGE}. `gen_ai.system.message`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__SYSTEM_INSTRUCTIONS} (`gen_ai.system_instructions`) instead
 */
declare const SEARCH_GEN_AI__SYSTEM__MESSAGE = "gen_ai.system.message";
/**
 * Search name for {@link attributes.GEN_AI_SYSTEM_INSTRUCTIONS}. `gen_ai.system_instructions`
 */
declare const SEARCH_GEN_AI__SYSTEM_INSTRUCTIONS = "gen_ai.system_instructions";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_CALL_ARGUMENTS}. `gen_ai.tool.call.arguments`
 */
declare const SEARCH_GEN_AI__TOOL__CALL__ARGUMENTS = "gen_ai.tool.call.arguments";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_CALL_RESULT}. `gen_ai.tool.call.result`
 */
declare const SEARCH_GEN_AI__TOOL__CALL__RESULT = "gen_ai.tool.call.result";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_DEFINITIONS}. `gen_ai.tool.definitions`
 */
declare const SEARCH_GEN_AI__TOOL__DEFINITIONS = "gen_ai.tool.definitions";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_DESCRIPTION}. `gen_ai.tool.description`
 */
declare const SEARCH_GEN_AI__TOOL__DESCRIPTION = "gen_ai.tool.description";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_INPUT}. `gen_ai.tool.input`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__CALL__ARGUMENTS} (`gen_ai.tool.call.arguments`) instead
 */
declare const SEARCH_GEN_AI__TOOL__INPUT = "gen_ai.tool.input";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_MESSAGE}. `gen_ai.tool.message`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__CALL__RESULT} (`gen_ai.tool.call.result`) instead
 */
declare const SEARCH_GEN_AI__TOOL__MESSAGE = "gen_ai.tool.message";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_NAME}. `gen_ai.tool.name`
 */
declare const SEARCH_GEN_AI__TOOL__NAME = "gen_ai.tool.name";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_OUTPUT}. `gen_ai.tool.output`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__CALL__RESULT} (`gen_ai.tool.call.result`) instead
 */
declare const SEARCH_GEN_AI__TOOL__OUTPUT = "gen_ai.tool.output";
/**
 * Search name for {@link attributes.GEN_AI_TOOL_TYPE}. `gen_ai.tool.type`
 *
 * @deprecated
 */
declare const SEARCH_GEN_AI__TOOL__TYPE = "gen_ai.tool.type";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_CACHE_CREATION_INPUT_TOKENS}. `gen_ai.usage.cache_creation.input_tokens`
 */
declare const SEARCH_GEN_AI__USAGE__CACHE_CREATION__INPUT_TOKENS = "gen_ai.usage.cache_creation.input_tokens";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_CACHE_READ_INPUT_TOKENS}. `gen_ai.usage.cache_read.input_tokens`
 */
declare const SEARCH_GEN_AI__USAGE__CACHE_READ__INPUT_TOKENS = "gen_ai.usage.cache_read.input_tokens";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_COMPLETION_TOKENS}. `gen_ai.usage.completion_tokens`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__OUTPUT_TOKENS} (`gen_ai.usage.output_tokens`) instead
 */
declare const SEARCH_GEN_AI__USAGE__COMPLETION_TOKENS = "gen_ai.usage.completion_tokens";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_INPUT_TOKENS}. `gen_ai.usage.input_tokens`
 */
declare const SEARCH_GEN_AI__USAGE__INPUT_TOKENS = "gen_ai.usage.input_tokens";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_INPUT_TOKENS_CACHE_WRITE}. `gen_ai.usage.input_tokens.cache_write`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__CACHE_CREATION__INPUT_TOKENS} (`gen_ai.usage.cache_creation.input_tokens`) instead
 */
declare const SEARCH_GEN_AI__USAGE__INPUT_TOKENS__CACHE_WRITE = "gen_ai.usage.input_tokens.cache_write";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_INPUT_TOKENS_CACHED}. `gen_ai.usage.input_tokens.cached`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__CACHE_READ__INPUT_TOKENS} (`gen_ai.usage.cache_read.input_tokens`) instead
 */
declare const SEARCH_GEN_AI__USAGE__INPUT_TOKENS__CACHED = "gen_ai.usage.input_tokens.cached";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_OUTPUT_TOKENS}. `gen_ai.usage.output_tokens`
 */
declare const SEARCH_GEN_AI__USAGE__OUTPUT_TOKENS = "gen_ai.usage.output_tokens";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_OUTPUT_TOKENS_REASONING}. `gen_ai.usage.output_tokens.reasoning`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__REASONING__OUTPUT_TOKENS} (`gen_ai.usage.reasoning.output_tokens`) instead
 */
declare const SEARCH_GEN_AI__USAGE__OUTPUT_TOKENS__REASONING = "gen_ai.usage.output_tokens.reasoning";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_PROMPT_TOKENS}. `gen_ai.usage.prompt_tokens`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__USAGE__INPUT_TOKENS} (`gen_ai.usage.input_tokens`) instead
 */
declare const SEARCH_GEN_AI__USAGE__PROMPT_TOKENS = "gen_ai.usage.prompt_tokens";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_REASONING_OUTPUT_TOKENS}. `gen_ai.usage.reasoning.output_tokens`
 */
declare const SEARCH_GEN_AI__USAGE__REASONING__OUTPUT_TOKENS = "gen_ai.usage.reasoning.output_tokens";
/**
 * Search name for {@link attributes.GEN_AI_USAGE_TOTAL_TOKENS}. `gen_ai.usage.total_tokens`
 */
declare const SEARCH_GEN_AI__USAGE__TOTAL_TOKENS = "gen_ai.usage.total_tokens";
/**
 * Search name for {@link attributes.GRAPHQL_DOCUMENT}. `graphql.document`
 */
declare const SEARCH_GRAPHQL__DOCUMENT = "graphql.document";
/**
 * Search name for {@link attributes.GRAPHQL_OPERATION_NAME}. `graphql.operation.name`
 */
declare const SEARCH_GRAPHQL__OPERATION__NAME = "graphql.operation.name";
/**
 * Search name for {@link attributes.GRAPHQL_OPERATION_TYPE}. `graphql.operation.type`
 */
declare const SEARCH_GRAPHQL__OPERATION__TYPE = "graphql.operation.type";
/**
 * Search name for {@link attributes.GRAPHQL_PROCESSING_TYPE}. `graphql.processing.type`
 */
declare const SEARCH_GRAPHQL__PROCESSING__TYPE = "graphql.processing.type";
/**
 * Search name for {@link attributes.GRAPHQL_SOURCE}. `graphql.source`
 *
 * @deprecated Use {@link SEARCH_GRAPHQL__DOCUMENT} (`graphql.document`) instead
 */
declare const SEARCH_GRAPHQL__SOURCE = "graphql.source";
/**
 * Search name for {@link attributes.GRPC_ERROR_BAD_REQUEST_FIELD_VIOLATIONS}. `grpc.error.bad_request.field_violations`
 */
declare const SEARCH_GRPC__ERROR__BAD_REQUEST__FIELD_VIOLATIONS = "grpc.error.bad_request.field_violations";
/**
 * Search name for {@link attributes.GRPC_ERROR_DEBUG_INFO_DETAIL}. `grpc.error.debug_info.detail`
 */
declare const SEARCH_GRPC__ERROR__DEBUG_INFO__DETAIL = "grpc.error.debug_info.detail";
/**
 * Search name for {@link attributes.GRPC_ERROR_DEBUG_INFO_STACK_ENTRIES}. `grpc.error.debug_info.stack_entries`
 */
declare const SEARCH_GRPC__ERROR__DEBUG_INFO__STACK_ENTRIES = "grpc.error.debug_info.stack_entries";
/**
 * Search name for {@link attributes.GRPC_ERROR_ERROR_INFO_DOMAIN}. `grpc.error.error_info.domain`
 */
declare const SEARCH_GRPC__ERROR__ERROR_INFO__DOMAIN = "grpc.error.error_info.domain";
/**
 * Search name for {@link attributes.GRPC_ERROR_ERROR_INFO_METADATA_KEY}. `grpc.error.error_info.metadata.<key>`
 */
declare const SEARCH_GRPC__ERROR__ERROR_INFO__METADATA__KEY = "grpc.error.error_info.metadata.<key>";
/**
 * Search name for {@link attributes.GRPC_ERROR_ERROR_INFO_REASON}. `grpc.error.error_info.reason`
 */
declare const SEARCH_GRPC__ERROR__ERROR_INFO__REASON = "grpc.error.error_info.reason";
/**
 * Search name for {@link attributes.GRPC_ERROR_PRECONDITION_FAILURE_VIOLATIONS}. `grpc.error.precondition_failure.violations`
 */
declare const SEARCH_GRPC__ERROR__PRECONDITION_FAILURE__VIOLATIONS = "grpc.error.precondition_failure.violations";
/**
 * Search name for {@link attributes.GRPC_ERROR_QUOTA_FAILURE_VIOLATIONS}. `grpc.error.quota_failure.violations`
 */
declare const SEARCH_GRPC__ERROR__QUOTA_FAILURE__VIOLATIONS = "grpc.error.quota_failure.violations";
/**
 * Search name for {@link attributes.GRPC_ERROR_RESOURCE_INFO_DESCRIPTION}. `grpc.error.resource_info.description`
 */
declare const SEARCH_GRPC__ERROR__RESOURCE_INFO__DESCRIPTION = "grpc.error.resource_info.description";
/**
 * Search name for {@link attributes.GRPC_ERROR_RESOURCE_INFO_OWNER}. `grpc.error.resource_info.owner`
 */
declare const SEARCH_GRPC__ERROR__RESOURCE_INFO__OWNER = "grpc.error.resource_info.owner";
/**
 * Search name for {@link attributes.GRPC_ERROR_RESOURCE_INFO_RESOURCE_NAME}. `grpc.error.resource_info.resource_name`
 */
declare const SEARCH_GRPC__ERROR__RESOURCE_INFO__RESOURCE_NAME = "grpc.error.resource_info.resource_name";
/**
 * Search name for {@link attributes.GRPC_ERROR_RESOURCE_INFO_RESOURCE_TYPE}. `grpc.error.resource_info.resource_type`
 */
declare const SEARCH_GRPC__ERROR__RESOURCE_INFO__RESOURCE_TYPE = "grpc.error.resource_info.resource_type";
/**
 * Search name for {@link attributes.GRPC_ERROR_RETRY_INFO_RETRY_DELAY_MS}. `grpc.error.retry_info.retry_delay_ms`
 */
declare const SEARCH_GRPC__ERROR__RETRY_INFO__RETRY_DELAY_MS = "grpc.error.retry_info.retry_delay_ms";
/**
 * Search name for {@link attributes.HARDWARECONCURRENCY}. `hardwareConcurrency`
 *
 * @deprecated Use {@link SEARCH_DEVICE__PROCESSOR_COUNT} (`device.processor_count`) instead
 */
declare const SEARCH_HARDWARECONCURRENCY = "hardwareConcurrency";
/**
 * Search name for {@link attributes.HTTP_CLIENT_IP}. `http.client_ip`
 *
 * @deprecated Use {@link SEARCH_CLIENT__ADDRESS} (`client.address`) instead
 */
declare const SEARCH_HTTP__CLIENT_IP = "http.client_ip";
/**
 * Search name for {@link attributes.HTTP_DECODED_RESPONSE_CONTENT_LENGTH}. `http.decoded_response_content_length`
 */
declare const SEARCH_HTTP__DECODED_RESPONSE_CONTENT_LENGTH = "http.decoded_response_content_length";
/**
 * Search name for {@link attributes.HTTP_FLAVOR}. `http.flavor`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PROTOCOL__VERSION} (`network.protocol.version`) instead
 */
declare const SEARCH_HTTP__FLAVOR = "http.flavor";
/**
 * Search name for {@link attributes.HTTP_FRAGMENT}. `http.fragment`
 */
declare const SEARCH_HTTP__FRAGMENT = "http.fragment";
/**
 * Search name for {@link attributes.HTTP_HOST}. `http.host`
 *
 * @deprecated Use {@link SEARCH_SERVER__ADDRESS} (`server.address`) instead
 */
declare const SEARCH_HTTP__HOST = "http.host";
/**
 * Search name for {@link attributes.HTTP_METHOD}. `http.method`
 *
 * @deprecated Use {@link SEARCH_HTTP__REQUEST__METHOD} (`http.request.method`) instead
 */
declare const SEARCH_HTTP__METHOD = "http.method";
/**
 * Search name for {@link attributes.HTTP_QUERY}. `http.query`
 */
declare const SEARCH_HTTP__QUERY = "http.query";
/**
 * Search name for {@link attributes.HTTP_REQUEST_BODY_DATA}. `http.request.body.data`
 */
declare const SEARCH_HTTP__REQUEST__BODY__DATA = "http.request.body.data";
/**
 * Search name for {@link attributes.HTTP_REQUEST_BODY_DECODED_SIZE}. `http.request.body.decoded_size`
 */
declare const SEARCH_HTTP__REQUEST__BODY__DECODED_SIZE = "http.request.body.decoded_size";
/**
 * Search name for {@link attributes.HTTP_REQUEST_BODY_SIZE}. `http.request.body.size`
 */
declare const SEARCH_HTTP__REQUEST__BODY__SIZE = "http.request.body.size";
/**
 * Search name for {@link attributes.HTTP_REQUEST_CONNECT_START}. `http.request.connect_start`
 */
declare const SEARCH_HTTP__REQUEST__CONNECT_START = "http.request.connect_start";
/**
 * Search name for {@link attributes.HTTP_REQUEST_CONNECTION_END}. `http.request.connection_end`
 */
declare const SEARCH_HTTP__REQUEST__CONNECTION_END = "http.request.connection_end";
/**
 * Search name for {@link attributes.HTTP_REQUEST_DOMAIN_LOOKUP_END}. `http.request.domain_lookup_end`
 */
declare const SEARCH_HTTP__REQUEST__DOMAIN_LOOKUP_END = "http.request.domain_lookup_end";
/**
 * Search name for {@link attributes.HTTP_REQUEST_DOMAIN_LOOKUP_START}. `http.request.domain_lookup_start`
 */
declare const SEARCH_HTTP__REQUEST__DOMAIN_LOOKUP_START = "http.request.domain_lookup_start";
/**
 * Search name for {@link attributes.HTTP_REQUEST_FETCH_START}. `http.request.fetch_start`
 */
declare const SEARCH_HTTP__REQUEST__FETCH_START = "http.request.fetch_start";
/**
 * Search name for {@link attributes.HTTP_REQUEST_HEADER_KEY}. `http.request.header.<key>`
 */
declare const SEARCH_HTTP__REQUEST__HEADER__KEY = "http.request.header.<key>";
/**
 * Search name for {@link attributes.HTTP_REQUEST_METHOD}. `http.request.method`
 */
declare const SEARCH_HTTP__REQUEST__METHOD = "http.request.method";
/**
 * Search name for {@link attributes.HTTP_REQUEST_REDIRECT_END}. `http.request.redirect_end`
 */
declare const SEARCH_HTTP__REQUEST__REDIRECT_END = "http.request.redirect_end";
/**
 * Search name for {@link attributes.HTTP_REQUEST_REDIRECT_START}. `http.request.redirect_start`
 */
declare const SEARCH_HTTP__REQUEST__REDIRECT_START = "http.request.redirect_start";
/**
 * Search name for {@link attributes.HTTP_REQUEST_REQUEST_START}. `http.request.request_start`
 */
declare const SEARCH_HTTP__REQUEST__REQUEST_START = "http.request.request_start";
/**
 * Search name for {@link attributes.HTTP_REQUEST_RESEND_COUNT}. `http.request.resend_count`
 */
declare const SEARCH_HTTP__REQUEST__RESEND_COUNT = "http.request.resend_count";
/**
 * Search name for {@link attributes.HTTP_REQUEST_RESPONSE_END}. `http.request.response_end`
 */
declare const SEARCH_HTTP__REQUEST__RESPONSE_END = "http.request.response_end";
/**
 * Search name for {@link attributes.HTTP_REQUEST_RESPONSE_START}. `http.request.response_start`
 */
declare const SEARCH_HTTP__REQUEST__RESPONSE_START = "http.request.response_start";
/**
 * Search name for {@link attributes.HTTP_REQUEST_SAME_ORIGIN}. `http.request.same_origin`
 */
declare const SEARCH_HTTP__REQUEST__SAME_ORIGIN = "http.request.same_origin";
/**
 * Search name for {@link attributes.HTTP_REQUEST_SECURE_CONNECTION_START}. `http.request.secure_connection_start`
 */
declare const SEARCH_HTTP__REQUEST__SECURE_CONNECTION_START = "http.request.secure_connection_start";
/**
 * Search name for {@link attributes.HTTP_REQUEST_TIME_TO_FIRST_BYTE}. `http.request.time_to_first_byte`
 */
declare const SEARCH_HTTP__REQUEST__TIME_TO_FIRST_BYTE = "http.request.time_to_first_byte";
/**
 * Search name for {@link attributes.HTTP_REQUEST_WORKER_START}. `http.request.worker_start`
 */
declare const SEARCH_HTTP__REQUEST__WORKER_START = "http.request.worker_start";
/**
 * Search name for {@link attributes.HTTP_REQUEST_CONTENT_LENGTH}. `http.request_content_length`
 *
 * @deprecated Use {@link SEARCH_HTTP__REQUEST__BODY__SIZE} (`http.request.body.size`) instead
 */
declare const SEARCH_HTTP__REQUEST_CONTENT_LENGTH = "http.request_content_length";
/**
 * Search name for {@link attributes.HTTP_REQUEST_CONTENT_LENGTH_UNCOMPRESSED}. `http.request_content_length_uncompressed`
 *
 * @deprecated Use {@link SEARCH_HTTP__REQUEST__BODY__DECODED_SIZE} (`http.request.body.decoded_size`) instead
 */
declare const SEARCH_HTTP__REQUEST_CONTENT_LENGTH_UNCOMPRESSED = "http.request_content_length_uncompressed";
/**
 * Search name for {@link attributes._HTTP_REQUEST_METHOD}. `http.request_method`
 *
 * @deprecated Use {@link SEARCH_HTTP__REQUEST__METHOD} (`http.request.method`) instead
 */
declare const SEARCH_HTTP__REQUEST_METHOD = "http.request_method";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_BODY_DECODED_SIZE}. `http.response.body.decoded_size`
 */
declare const SEARCH_HTTP__RESPONSE__BODY__DECODED_SIZE = "http.response.body.decoded_size";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_BODY_SIZE}. `http.response.body.size`
 */
declare const SEARCH_HTTP__RESPONSE__BODY__SIZE = "http.response.body.size";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_HEADER_KEY}. `http.response.header.<key>`
 */
declare const SEARCH_HTTP__RESPONSE__HEADER__KEY = "http.response.header.<key>";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_CONTENT_LENGTH}. `http.response.header.content-length`
 *
 * @deprecated Use {@link SEARCH_HTTP__RESPONSE_CONTENT_LENGTH} (`http.response_content_length`) instead
 */
declare const SEARCH_HTTP__RESPONSE__HEADER__CONTENT_LENGTH = "http.response.header.content-length";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_SIZE}. `http.response.size`
 */
declare const SEARCH_HTTP__RESPONSE__SIZE = "http.response.size";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_STATUS_CODE}. `http.response.status_code`
 *
 * @deprecated Use {@link SEARCH_HTTP__RESPONSE_STATUS_CODE} (`http.response_status_code`) instead
 */
declare const SEARCH_HTTP__RESPONSE__STATUS_CODE = "http.response.status_code";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_STATUS_TEXT}. `http.response.status_text`
 */
declare const SEARCH_HTTP__RESPONSE__STATUS_TEXT = "http.response.status_text";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_CONTENT_LENGTH}. `http.response_content_length`
 */
declare const SEARCH_HTTP__RESPONSE_CONTENT_LENGTH = "http.response_content_length";
/**
 * Search name for {@link attributes.HTTP_DECODED_RESPONSE_CONTENT_LENGTH}. `http.response_content_length_uncompressed`
 *
 * @deprecated Use {@link SEARCH_HTTP__DECODED_RESPONSE_CONTENT_LENGTH} (`http.decoded_response_content_length`) instead
 */
declare const SEARCH_HTTP__RESPONSE_CONTENT_LENGTH_UNCOMPRESSED = "http.response_content_length_uncompressed";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_STATUS_CODE}. `http.response_status_code`
 */
declare const SEARCH_HTTP__RESPONSE_STATUS_CODE = "http.response_status_code";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_TRANSFER_SIZE}. `http.response_transfer_size`
 */
declare const SEARCH_HTTP__RESPONSE_TRANSFER_SIZE = "http.response_transfer_size";
/**
 * Search name for {@link attributes.HTTP_ROUTE}. `http.route`
 */
declare const SEARCH_HTTP__ROUTE = "http.route";
/**
 * Search name for {@link attributes.HTTP_SCHEME}. `http.scheme`
 *
 * @deprecated Use {@link SEARCH_URL__SCHEME} (`url.scheme`) instead
 */
declare const SEARCH_HTTP__SCHEME = "http.scheme";
/**
 * Search name for {@link attributes.HTTP_SERVER_REQUEST_TIME_IN_QUEUE}. `http.server.request.time_in_queue`
 */
declare const SEARCH_HTTP__SERVER__REQUEST__TIME_IN_QUEUE = "http.server.request.time_in_queue";
/**
 * Search name for {@link attributes.HTTP_SERVER_NAME}. `http.server_name`
 *
 * @deprecated Use {@link SEARCH_SERVER__ADDRESS} (`server.address`) instead
 */
declare const SEARCH_HTTP__SERVER_NAME = "http.server_name";
/**
 * Search name for {@link attributes.HTTP_RESPONSE_STATUS_CODE}. `http.status_code`
 *
 * @deprecated Use {@link SEARCH_HTTP__RESPONSE_STATUS_CODE} (`http.response_status_code`) instead
 */
declare const SEARCH_HTTP__STATUS_CODE = "http.status_code";
/**
 * Search name for {@link attributes.HTTP_STATUS_TEXT}. `http.status_text`
 *
 * @deprecated Use {@link SEARCH_HTTP__RESPONSE__STATUS_TEXT} (`http.response.status_text`) instead
 */
declare const SEARCH_HTTP__STATUS_TEXT = "http.status_text";
/**
 * Search name for {@link attributes.HTTP_TARGET}. `http.target`
 *
 * @deprecated
 */
declare const SEARCH_HTTP__TARGET = "http.target";
/**
 * Search name for {@link attributes.HTTP_URL}. `http.url`
 *
 * @deprecated Use {@link SEARCH_URL__FULL} (`url.full`) instead
 */
declare const SEARCH_HTTP__URL = "http.url";
/**
 * Search name for {@link attributes.HTTP_USER_AGENT}. `http.user_agent`
 *
 * @deprecated Use {@link SEARCH_USER_AGENT__ORIGINAL} (`user_agent.original`) instead
 */
declare const SEARCH_HTTP__USER_AGENT = "http.user_agent";
/**
 * Search name for {@link attributes.ID}. `id`
 */
declare const SEARCH_ID = "id";
/**
 * Search name for {@link attributes.INP}. `inp`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__INP__VALUE} (`browser.web_vital.inp.value`) instead
 */
declare const SEARCH_INP = "inp";
/**
 * Search name for {@link attributes.JSONRPC_PROTOCOL_VERSION}. `jsonrpc.protocol.version`
 */
declare const SEARCH_JSONRPC__PROTOCOL__VERSION = "jsonrpc.protocol.version";
/**
 * Search name for {@link attributes.JSONRPC_REQUEST_ID}. `jsonrpc.request.id`
 */
declare const SEARCH_JSONRPC__REQUEST__ID = "jsonrpc.request.id";
/**
 * Search name for {@link attributes.JVM_GC_ACTION}. `jvm.gc.action`
 */
declare const SEARCH_JVM__GC__ACTION = "jvm.gc.action";
/**
 * Search name for {@link attributes.JVM_GC_NAME}. `jvm.gc.name`
 */
declare const SEARCH_JVM__GC__NAME = "jvm.gc.name";
/**
 * Search name for {@link attributes.JVM_MEMORY_POOL_NAME}. `jvm.memory.pool.name`
 */
declare const SEARCH_JVM__MEMORY__POOL__NAME = "jvm.memory.pool.name";
/**
 * Search name for {@link attributes.JVM_MEMORY_TYPE}. `jvm.memory.type`
 */
declare const SEARCH_JVM__MEMORY__TYPE = "jvm.memory.type";
/**
 * Search name for {@link attributes.JVM_THREAD_DAEMON}. `jvm.thread.daemon`
 */
declare const SEARCH_JVM__THREAD__DAEMON = "jvm.thread.daemon";
/**
 * Search name for {@link attributes.JVM_THREAD_STATE}. `jvm.thread.state`
 */
declare const SEARCH_JVM__THREAD__STATE = "jvm.thread.state";
/**
 * Search name for {@link attributes.KOA_NAME}. `koa.name`
 *
 * @deprecated
 */
declare const SEARCH_KOA__NAME = "koa.name";
/**
 * Search name for {@link attributes.KOA_TYPE}. `koa.type`
 */
declare const SEARCH_KOA__TYPE = "koa.type";
/**
 * Search name for {@link attributes.LANGCHAIN_CHAIN_NAME}. `langchain.chain.name`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__PIPELINE__NAME} (`gen_ai.pipeline.name`) instead
 */
declare const SEARCH_LANGCHAIN__CHAIN__NAME = "langchain.chain.name";
/**
 * Search name for {@link attributes.LCP}. `lcp`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__LCP__VALUE} (`browser.web_vital.lcp.value`) instead
 */
declare const SEARCH_LCP = "lcp";
/**
 * Search name for {@link attributes.LCP_ELEMENT}. `lcp.element`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__LCP__ELEMENT} (`browser.web_vital.lcp.element`) instead
 */
declare const SEARCH_LCP__ELEMENT = "lcp.element";
/**
 * Search name for {@link attributes.LCP_ID}. `lcp.id`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__LCP__ID} (`browser.web_vital.lcp.id`) instead
 */
declare const SEARCH_LCP__ID = "lcp.id";
/**
 * Search name for {@link attributes.LCP_LOADTIME}. `lcp.loadTime`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__LCP__LOAD_TIME} (`browser.web_vital.lcp.load_time`) instead
 */
declare const SEARCH_LCP__LOADTIME = "lcp.loadTime";
/**
 * Search name for {@link attributes.LCP_RENDERTIME}. `lcp.renderTime`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__LCP__RENDER_TIME} (`browser.web_vital.lcp.render_time`) instead
 */
declare const SEARCH_LCP__RENDERTIME = "lcp.renderTime";
/**
 * Search name for {@link attributes.LCP_SIZE}. `lcp.size`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__LCP__SIZE} (`browser.web_vital.lcp.size`) instead
 */
declare const SEARCH_LCP__SIZE = "lcp.size";
/**
 * Search name for {@link attributes.LCP_URL}. `lcp.url`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__LCP__URL} (`browser.web_vital.lcp.url`) instead
 */
declare const SEARCH_LCP__URL = "lcp.url";
/**
 * Search name for {@link attributes.LITESTAR_MIDDLEWARE_NAME}. `litestar.middleware_name`
 *
 * @deprecated Use {@link SEARCH_MIDDLEWARE__NAME} (`middleware.name`) instead
 */
declare const SEARCH_LITESTAR__MIDDLEWARE_NAME = "litestar.middleware_name";
/**
 * Search name for {@link attributes.LOGGER_NAME}. `logger.name`
 */
declare const SEARCH_LOGGER__NAME = "logger.name";
/**
 * Search name for {@link attributes.MCP_CANCELLED_REASON}. `mcp.cancelled.reason`
 */
declare const SEARCH_MCP__CANCELLED__REASON = "mcp.cancelled.reason";
/**
 * Search name for {@link attributes.MCP_CANCELLED_REQUEST_ID}. `mcp.cancelled.request_id`
 */
declare const SEARCH_MCP__CANCELLED__REQUEST_ID = "mcp.cancelled.request_id";
/**
 * Search name for {@link attributes.MCP_CLIENT_NAME}. `mcp.client.name`
 */
declare const SEARCH_MCP__CLIENT__NAME = "mcp.client.name";
/**
 * Search name for {@link attributes.MCP_CLIENT_TITLE}. `mcp.client.title`
 */
declare const SEARCH_MCP__CLIENT__TITLE = "mcp.client.title";
/**
 * Search name for {@link attributes.MCP_CLIENT_VERSION}. `mcp.client.version`
 */
declare const SEARCH_MCP__CLIENT__VERSION = "mcp.client.version";
/**
 * Search name for {@link attributes.MCP_LIFECYCLE_PHASE}. `mcp.lifecycle.phase`
 */
declare const SEARCH_MCP__LIFECYCLE__PHASE = "mcp.lifecycle.phase";
/**
 * Search name for {@link attributes.MCP_LOGGING_DATA_TYPE}. `mcp.logging.data_type`
 */
declare const SEARCH_MCP__LOGGING__DATA_TYPE = "mcp.logging.data_type";
/**
 * Search name for {@link attributes.MCP_LOGGING_LEVEL}. `mcp.logging.level`
 */
declare const SEARCH_MCP__LOGGING__LEVEL = "mcp.logging.level";
/**
 * Search name for {@link attributes.MCP_LOGGING_LOGGER}. `mcp.logging.logger`
 */
declare const SEARCH_MCP__LOGGING__LOGGER = "mcp.logging.logger";
/**
 * Search name for {@link attributes.MCP_LOGGING_MESSAGE}. `mcp.logging.message`
 */
declare const SEARCH_MCP__LOGGING__MESSAGE = "mcp.logging.message";
/**
 * Search name for {@link attributes.MCP_METHOD_NAME}. `mcp.method.name`
 */
declare const SEARCH_MCP__METHOD__NAME = "mcp.method.name";
/**
 * Search name for {@link attributes.MCP_PROGRESS_CURRENT}. `mcp.progress.current`
 */
declare const SEARCH_MCP__PROGRESS__CURRENT = "mcp.progress.current";
/**
 * Search name for {@link attributes.MCP_PROGRESS_MESSAGE}. `mcp.progress.message`
 */
declare const SEARCH_MCP__PROGRESS__MESSAGE = "mcp.progress.message";
/**
 * Search name for {@link attributes.MCP_PROGRESS_PERCENTAGE}. `mcp.progress.percentage`
 */
declare const SEARCH_MCP__PROGRESS__PERCENTAGE = "mcp.progress.percentage";
/**
 * Search name for {@link attributes.MCP_PROGRESS_TOKEN}. `mcp.progress.token`
 */
declare const SEARCH_MCP__PROGRESS__TOKEN = "mcp.progress.token";
/**
 * Search name for {@link attributes.MCP_PROGRESS_TOTAL}. `mcp.progress.total`
 */
declare const SEARCH_MCP__PROGRESS__TOTAL = "mcp.progress.total";
/**
 * Search name for {@link attributes.MCP_PROMPT_NAME}. `mcp.prompt.name`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__PROMPT__NAME} (`gen_ai.prompt.name`) instead
 */
declare const SEARCH_MCP__PROMPT__NAME = "mcp.prompt.name";
/**
 * Search name for {@link attributes.MCP_PROMPT_RESULT_DESCRIPTION}. `mcp.prompt.result.description`
 */
declare const SEARCH_MCP__PROMPT__RESULT__DESCRIPTION = "mcp.prompt.result.description";
/**
 * Search name for {@link attributes.MCP_PROMPT_RESULT_MESSAGE_CONTENT}. `mcp.prompt.result.message_content`
 */
declare const SEARCH_MCP__PROMPT__RESULT__MESSAGE_CONTENT = "mcp.prompt.result.message_content";
/**
 * Search name for {@link attributes.MCP_PROMPT_RESULT_MESSAGE_COUNT}. `mcp.prompt.result.message_count`
 */
declare const SEARCH_MCP__PROMPT__RESULT__MESSAGE_COUNT = "mcp.prompt.result.message_count";
/**
 * Search name for {@link attributes.MCP_PROMPT_RESULT_MESSAGE_ROLE}. `mcp.prompt.result.message_role`
 */
declare const SEARCH_MCP__PROMPT__RESULT__MESSAGE_ROLE = "mcp.prompt.result.message_role";
/**
 * Search name for {@link attributes.MCP_PROTOCOL_READY}. `mcp.protocol.ready`
 */
declare const SEARCH_MCP__PROTOCOL__READY = "mcp.protocol.ready";
/**
 * Search name for {@link attributes.MCP_PROTOCOL_VERSION}. `mcp.protocol.version`
 */
declare const SEARCH_MCP__PROTOCOL__VERSION = "mcp.protocol.version";
/**
 * Search name for {@link attributes.MCP_REQUEST_ARGUMENT_KEY}. `mcp.request.argument.<key>`
 */
declare const SEARCH_MCP__REQUEST__ARGUMENT__KEY = "mcp.request.argument.<key>";
/**
 * Search name for {@link attributes.MCP_REQUEST_ARGUMENT_NAME}. `mcp.request.argument.name`
 */
declare const SEARCH_MCP__REQUEST__ARGUMENT__NAME = "mcp.request.argument.name";
/**
 * Search name for {@link attributes.MCP_REQUEST_ARGUMENT_URI}. `mcp.request.argument.uri`
 */
declare const SEARCH_MCP__REQUEST__ARGUMENT__URI = "mcp.request.argument.uri";
/**
 * Search name for {@link attributes.MCP_REQUEST_ID}. `mcp.request.id`
 *
 * @deprecated Use {@link SEARCH_JSONRPC__REQUEST__ID} (`jsonrpc.request.id`) instead
 */
declare const SEARCH_MCP__REQUEST__ID = "mcp.request.id";
/**
 * Search name for {@link attributes.MCP_RESOURCE_PROTOCOL}. `mcp.resource.protocol`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PROTOCOL__NAME} (`network.protocol.name`) instead
 */
declare const SEARCH_MCP__RESOURCE__PROTOCOL = "mcp.resource.protocol";
/**
 * Search name for {@link attributes.MCP_RESOURCE_URI}. `mcp.resource.uri`
 */
declare const SEARCH_MCP__RESOURCE__URI = "mcp.resource.uri";
/**
 * Search name for {@link attributes.MCP_SERVER_NAME}. `mcp.server.name`
 */
declare const SEARCH_MCP__SERVER__NAME = "mcp.server.name";
/**
 * Search name for {@link attributes.MCP_SERVER_TITLE}. `mcp.server.title`
 */
declare const SEARCH_MCP__SERVER__TITLE = "mcp.server.title";
/**
 * Search name for {@link attributes.MCP_SERVER_VERSION}. `mcp.server.version`
 */
declare const SEARCH_MCP__SERVER__VERSION = "mcp.server.version";
/**
 * Search name for {@link attributes.MCP_SESSION_ID}. `mcp.session.id`
 */
declare const SEARCH_MCP__SESSION__ID = "mcp.session.id";
/**
 * Search name for {@link attributes.MCP_TOOL_NAME}. `mcp.tool.name`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__NAME} (`gen_ai.tool.name`) instead
 */
declare const SEARCH_MCP__TOOL__NAME = "mcp.tool.name";
/**
 * Search name for {@link attributes.MCP_TOOL_RESULT_CONTENT}. `mcp.tool.result.content`
 *
 * @deprecated Use {@link SEARCH_GEN_AI__TOOL__CALL__RESULT} (`gen_ai.tool.call.result`) instead
 */
declare const SEARCH_MCP__TOOL__RESULT__CONTENT = "mcp.tool.result.content";
/**
 * Search name for {@link attributes.MCP_TOOL_RESULT_CONTENT_COUNT}. `mcp.tool.result.content_count`
 */
declare const SEARCH_MCP__TOOL__RESULT__CONTENT_COUNT = "mcp.tool.result.content_count";
/**
 * Search name for {@link attributes.MCP_TOOL_RESULT_IS_ERROR}. `mcp.tool.result.is_error`
 *
 * @deprecated Use {@link SEARCH_ERROR__TYPE} (`error.type`) instead
 */
declare const SEARCH_MCP__TOOL__RESULT__IS_ERROR = "mcp.tool.result.is_error";
/**
 * Search name for {@link attributes.MCP_TRANSPORT}. `mcp.transport`
 *
 * @deprecated Use {@link SEARCH_NETWORK__TRANSPORT} (`network.transport`) instead
 */
declare const SEARCH_MCP__TRANSPORT = "mcp.transport";
/**
 * Search name for {@link attributes.MDC_KEY}. `mdc.<key>`
 */
declare const SEARCH_MDC__KEY = "mdc.<key>";
/**
 * Search name for {@link attributes.MESSAGING_BATCH_MESSAGE_COUNT}. `messaging.batch.message_count`
 */
declare const SEARCH_MESSAGING__BATCH__MESSAGE_COUNT = "messaging.batch.message_count";
/**
 * Search name for {@link attributes.MESSAGING_CONVERSATION_ID}. `messaging.conversation_id`
 *
 * @deprecated Use {@link SEARCH_MESSAGING__MESSAGE__CONVERSATION_ID} (`messaging.message.conversation_id`) instead
 */
declare const SEARCH_MESSAGING__CONVERSATION_ID = "messaging.conversation_id";
/**
 * Search name for {@link attributes.MESSAGING_DESTINATION}. `messaging.destination`
 *
 * @deprecated Use {@link SEARCH_MESSAGING__DESTINATION__NAME} (`messaging.destination.name`) instead
 */
declare const SEARCH_MESSAGING__DESTINATION = "messaging.destination";
/**
 * Search name for {@link attributes.MESSAGING_DESTINATION_CONNECTION}. `messaging.destination.connection`
 */
declare const SEARCH_MESSAGING__DESTINATION__CONNECTION = "messaging.destination.connection";
/**
 * Search name for {@link attributes.MESSAGING_DESTINATION_NAME}. `messaging.destination.name`
 */
declare const SEARCH_MESSAGING__DESTINATION__NAME = "messaging.destination.name";
/**
 * Search name for {@link attributes.MESSAGING_DESTINATION_PARTITION_ID}. `messaging.destination.partition.id`
 */
declare const SEARCH_MESSAGING__DESTINATION__PARTITION__ID = "messaging.destination.partition.id";
/**
 * Search name for {@link attributes.MESSAGING_DESTINATION_KIND}. `messaging.destination_kind`
 *
 * @deprecated
 */
declare const SEARCH_MESSAGING__DESTINATION_KIND = "messaging.destination_kind";
/**
 * Search name for {@link attributes.MESSAGING_KAFKA_MESSAGE_KEY}. `messaging.kafka.message.key`
 */
declare const SEARCH_MESSAGING__KAFKA__MESSAGE__KEY = "messaging.kafka.message.key";
/**
 * Search name for {@link attributes.MESSAGING_KAFKA_MESSAGE_TOMBSTONE}. `messaging.kafka.message.tombstone`
 */
declare const SEARCH_MESSAGING__KAFKA__MESSAGE__TOMBSTONE = "messaging.kafka.message.tombstone";
/**
 * Search name for {@link attributes.MESSAGING_KAFKA_OFFSET}. `messaging.kafka.offset`
 */
declare const SEARCH_MESSAGING__KAFKA__OFFSET = "messaging.kafka.offset";
/**
 * Search name for {@link attributes.MESSAGING_MESSAGE_BODY_SIZE}. `messaging.message.body.size`
 */
declare const SEARCH_MESSAGING__MESSAGE__BODY__SIZE = "messaging.message.body.size";
/**
 * Search name for {@link attributes.MESSAGING_MESSAGE_CONVERSATION_ID}. `messaging.message.conversation_id`
 */
declare const SEARCH_MESSAGING__MESSAGE__CONVERSATION_ID = "messaging.message.conversation_id";
/**
 * Search name for {@link attributes.MESSAGING_MESSAGE_ENVELOPE_SIZE}. `messaging.message.envelope.size`
 */
declare const SEARCH_MESSAGING__MESSAGE__ENVELOPE__SIZE = "messaging.message.envelope.size";
/**
 * Search name for {@link attributes.MESSAGING_MESSAGE_ID}. `messaging.message.id`
 */
declare const SEARCH_MESSAGING__MESSAGE__ID = "messaging.message.id";
/**
 * Search name for {@link attributes.MESSAGING_MESSAGE_RECEIVE_LATENCY}. `messaging.message.receive.latency`
 */
declare const SEARCH_MESSAGING__MESSAGE__RECEIVE__LATENCY = "messaging.message.receive.latency";
/**
 * Search name for {@link attributes.MESSAGING_MESSAGE_RETRY_COUNT}. `messaging.message.retry.count`
 */
declare const SEARCH_MESSAGING__MESSAGE__RETRY__COUNT = "messaging.message.retry.count";
/**
 * Search name for {@link attributes._MESSAGING_MESSAGE_ID}. `messaging.message_id`
 *
 * @deprecated Use {@link SEARCH_MESSAGING__MESSAGE__ID} (`messaging.message.id`) instead
 */
declare const SEARCH_MESSAGING__MESSAGE_ID = "messaging.message_id";
/**
 * Search name for {@link attributes.MESSAGING_OPERATION}. `messaging.operation`
 *
 * @deprecated Use {@link SEARCH_MESSAGING__OPERATION__NAME} (`messaging.operation.name`) instead
 */
declare const SEARCH_MESSAGING__OPERATION = "messaging.operation";
/**
 * Search name for {@link attributes.MESSAGING_OPERATION_NAME}. `messaging.operation.name`
 */
declare const SEARCH_MESSAGING__OPERATION__NAME = "messaging.operation.name";
/**
 * Search name for {@link attributes.MESSAGING_OPERATION_TYPE}. `messaging.operation.type`
 */
declare const SEARCH_MESSAGING__OPERATION__TYPE = "messaging.operation.type";
/**
 * Search name for {@link attributes.MESSAGING_PROTOCOL}. `messaging.protocol`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PROTOCOL__NAME} (`network.protocol.name`) instead
 */
declare const SEARCH_MESSAGING__PROTOCOL = "messaging.protocol";
/**
 * Search name for {@link attributes.MESSAGING_PROTOCOL_VERSION}. `messaging.protocol_version`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PROTOCOL__VERSION} (`network.protocol.version`) instead
 */
declare const SEARCH_MESSAGING__PROTOCOL_VERSION = "messaging.protocol_version";
/**
 * Search name for {@link attributes.MESSAGING_RABBITMQ_DESTINATION_ROUTING_KEY}. `messaging.rabbitmq.destination.routing_key`
 */
declare const SEARCH_MESSAGING__RABBITMQ__DESTINATION__ROUTING_KEY = "messaging.rabbitmq.destination.routing_key";
/**
 * Search name for {@link attributes.MESSAGING_RABBITMQ_ROUTING_KEY}. `messaging.rabbitmq.routing_key`
 *
 * @deprecated Use {@link SEARCH_MESSAGING__RABBITMQ__DESTINATION__ROUTING_KEY} (`messaging.rabbitmq.destination.routing_key`) instead
 */
declare const SEARCH_MESSAGING__RABBITMQ__ROUTING_KEY = "messaging.rabbitmq.routing_key";
/**
 * Search name for {@link attributes.MESSAGING_SYSTEM}. `messaging.system`
 */
declare const SEARCH_MESSAGING__SYSTEM = "messaging.system";
/**
 * Search name for {@link attributes.MESSAGING_URL}. `messaging.url`
 *
 * @deprecated Use {@link SEARCH_URL__FULL} (`url.full`) instead
 */
declare const SEARCH_MESSAGING__URL = "messaging.url";
/**
 * Search name for {@link attributes.METHOD}. `method`
 *
 * @deprecated Use {@link SEARCH_HTTP__REQUEST__METHOD} (`http.request.method`) instead
 */
declare const SEARCH_METHOD = "method";
/**
 * Search name for {@link attributes.MIDDLEWARE_NAME}. `middleware.name`
 */
declare const SEARCH_MIDDLEWARE__NAME = "middleware.name";
/**
 * Search name for {@link attributes.FRAMES_DELAY}. `mobile.frames_delay`
 */
declare const SEARCH_MOBILE__FRAMES_DELAY = "mobile.frames_delay";
/**
 * Search name for {@link attributes.FRAMES_FROZEN}. `mobile.frozen_frames`
 */
declare const SEARCH_MOBILE__FROZEN_FRAMES = "mobile.frozen_frames";
/**
 * Search name for {@link attributes.FRAMES_SLOW}. `mobile.slow_frames`
 */
declare const SEARCH_MOBILE__SLOW_FRAMES = "mobile.slow_frames";
/**
 * Search name for {@link attributes.FRAMES_TOTAL}. `mobile.total_frames`
 */
declare const SEARCH_MOBILE__TOTAL_FRAMES = "mobile.total_frames";
/**
 * Search name for {@link attributes.NAVIGATION_ORIGIN}. `navigation.origin`
 *
 * @deprecated Use {@link SEARCH_ROUTER__NAVIGATION__ORIGIN} (`router.navigation.origin`) instead
 */
declare const SEARCH_NAVIGATION__ORIGIN = "navigation.origin";
/**
 * Search name for {@link attributes.NAVIGATION_ROUTE_ID}. `navigation.route.id`
 *
 * @deprecated Use {@link SEARCH_ROUTER__NAVIGATION__ROUTE__ID} (`router.navigation.route.id`) instead
 */
declare const SEARCH_NAVIGATION__ROUTE__ID = "navigation.route.id";
/**
 * Search name for {@link attributes.NAVIGATION_TYPE}. `navigation.type`
 *
 * @deprecated Use {@link SEARCH_ROUTER__NAVIGATION__TYPE} (`router.navigation.type`) instead
 */
declare const SEARCH_NAVIGATION__TYPE = "navigation.type";
/**
 * Search name for {@link attributes.NEL_ELAPSED_TIME}. `nel.elapsed_time`
 */
declare const SEARCH_NEL__ELAPSED_TIME = "nel.elapsed_time";
/**
 * Search name for {@link attributes.NEL_PHASE}. `nel.phase`
 */
declare const SEARCH_NEL__PHASE = "nel.phase";
/**
 * Search name for {@link attributes.NEL_REFERRER}. `nel.referrer`
 */
declare const SEARCH_NEL__REFERRER = "nel.referrer";
/**
 * Search name for {@link attributes.NEL_SAMPLING_FUNCTION}. `nel.sampling_function`
 */
declare const SEARCH_NEL__SAMPLING_FUNCTION = "nel.sampling_function";
/**
 * Search name for {@link attributes.NEL_TYPE}. `nel.type`
 */
declare const SEARCH_NEL__TYPE = "nel.type";
/**
 * Search name for {@link attributes.NET_HOST_IP}. `net.host.ip`
 *
 * @deprecated Use {@link SEARCH_NETWORK__LOCAL__ADDRESS} (`network.local.address`) instead
 */
declare const SEARCH_NET__HOST__IP = "net.host.ip";
/**
 * Search name for {@link attributes.NET_HOST_NAME}. `net.host.name`
 *
 * @deprecated Use {@link SEARCH_SERVER__ADDRESS} (`server.address`) instead
 */
declare const SEARCH_NET__HOST__NAME = "net.host.name";
/**
 * Search name for {@link attributes.NET_HOST_PORT}. `net.host.port`
 *
 * @deprecated Use {@link SEARCH_SERVER__PORT} (`server.port`) instead
 */
declare const SEARCH_NET__HOST__PORT = "net.host.port";
/**
 * Search name for {@link attributes.NET_PEER_IP}. `net.peer.ip`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PEER__ADDRESS} (`network.peer.address`) instead
 */
declare const SEARCH_NET__PEER__IP = "net.peer.ip";
/**
 * Search name for {@link attributes.NET_PEER_NAME}. `net.peer.name`
 *
 * @deprecated Use {@link SEARCH_SERVER__ADDRESS} (`server.address`) instead
 */
declare const SEARCH_NET__PEER__NAME = "net.peer.name";
/**
 * Search name for {@link attributes.NET_PEER_PORT}. `net.peer.port`
 *
 * @deprecated Use {@link SEARCH_SERVER__PORT} (`server.port`) instead
 */
declare const SEARCH_NET__PEER__PORT = "net.peer.port";
/**
 * Search name for {@link attributes.NET_PROTOCOL_NAME}. `net.protocol.name`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PROTOCOL__NAME} (`network.protocol.name`) instead
 */
declare const SEARCH_NET__PROTOCOL__NAME = "net.protocol.name";
/**
 * Search name for {@link attributes.NET_PROTOCOL_VERSION}. `net.protocol.version`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PROTOCOL__VERSION} (`network.protocol.version`) instead
 */
declare const SEARCH_NET__PROTOCOL__VERSION = "net.protocol.version";
/**
 * Search name for {@link attributes.NET_SOCK_FAMILY}. `net.sock.family`
 *
 * @deprecated Use {@link SEARCH_NETWORK__TRANSPORT} (`network.transport`) instead
 */
declare const SEARCH_NET__SOCK__FAMILY = "net.sock.family";
/**
 * Search name for {@link attributes.NET_SOCK_HOST_ADDR}. `net.sock.host.addr`
 *
 * @deprecated Use {@link SEARCH_NETWORK__LOCAL__ADDRESS} (`network.local.address`) instead
 */
declare const SEARCH_NET__SOCK__HOST__ADDR = "net.sock.host.addr";
/**
 * Search name for {@link attributes.NET_SOCK_HOST_PORT}. `net.sock.host.port`
 *
 * @deprecated Use {@link SEARCH_NETWORK__LOCAL__PORT} (`network.local.port`) instead
 */
declare const SEARCH_NET__SOCK__HOST__PORT = "net.sock.host.port";
/**
 * Search name for {@link attributes.NET_SOCK_PEER_ADDR}. `net.sock.peer.addr`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PEER__ADDRESS} (`network.peer.address`) instead
 */
declare const SEARCH_NET__SOCK__PEER__ADDR = "net.sock.peer.addr";
/**
 * Search name for {@link attributes.NET_SOCK_PEER_NAME}. `net.sock.peer.name`
 *
 * @deprecated
 */
declare const SEARCH_NET__SOCK__PEER__NAME = "net.sock.peer.name";
/**
 * Search name for {@link attributes.NET_SOCK_PEER_PORT}. `net.sock.peer.port`
 *
 * @deprecated Use {@link SEARCH_NETWORK__PEER__PORT} (`network.peer.port`) instead
 */
declare const SEARCH_NET__SOCK__PEER__PORT = "net.sock.peer.port";
/**
 * Search name for {@link attributes.NET_TRANSPORT}. `net.transport`
 *
 * @deprecated Use {@link SEARCH_NETWORK__TRANSPORT} (`network.transport`) instead
 */
declare const SEARCH_NET__TRANSPORT = "net.transport";
/**
 * Search name for {@link attributes.NETWORK_CONNECTION_EFFECTIVE_TYPE}. `network.connection.effective_type`
 */
declare const SEARCH_NETWORK__CONNECTION__EFFECTIVE_TYPE = "network.connection.effective_type";
/**
 * Search name for {@link attributes.NETWORK_CONNECTION_RTT}. `network.connection.rtt`
 */
declare const SEARCH_NETWORK__CONNECTION__RTT = "network.connection.rtt";
/**
 * Search name for {@link attributes.NETWORK_CONNECTION_TYPE}. `network.connection.type`
 */
declare const SEARCH_NETWORK__CONNECTION__TYPE = "network.connection.type";
/**
 * Search name for {@link attributes.NETWORK_LOCAL_ADDRESS}. `network.local.address`
 */
declare const SEARCH_NETWORK__LOCAL__ADDRESS = "network.local.address";
/**
 * Search name for {@link attributes.NETWORK_LOCAL_PORT}. `network.local.port`
 */
declare const SEARCH_NETWORK__LOCAL__PORT = "network.local.port";
/**
 * Search name for {@link attributes.NETWORK_PEER_ADDRESS}. `network.peer.address`
 */
declare const SEARCH_NETWORK__PEER__ADDRESS = "network.peer.address";
/**
 * Search name for {@link attributes.NETWORK_PEER_PORT}. `network.peer.port`
 */
declare const SEARCH_NETWORK__PEER__PORT = "network.peer.port";
/**
 * Search name for {@link attributes.NETWORK_PROTOCOL_NAME}. `network.protocol.name`
 */
declare const SEARCH_NETWORK__PROTOCOL__NAME = "network.protocol.name";
/**
 * Search name for {@link attributes.NETWORK_PROTOCOL_VERSION}. `network.protocol.version`
 */
declare const SEARCH_NETWORK__PROTOCOL__VERSION = "network.protocol.version";
/**
 * Search name for {@link attributes.NETWORK_TRANSPORT}. `network.transport`
 */
declare const SEARCH_NETWORK__TRANSPORT = "network.transport";
/**
 * Search name for {@link attributes.NETWORK_TYPE}. `network.type`
 */
declare const SEARCH_NETWORK__TYPE = "network.type";
/**
 * Search name for {@link attributes.SENTRY_ORIGIN}. `origin`
 */
declare const SEARCH_ORIGIN = "origin";
/**
 * Search name for {@link attributes.OS_BUILD}. `os.build`
 *
 * @deprecated Use {@link SEARCH_OS__BUILD_ID} (`os.build_id`) instead
 */
declare const SEARCH_OS__BUILD = "os.build";
/**
 * Search name for {@link attributes.OS_BUILD_ID}. `os.build_id`
 */
declare const SEARCH_OS__BUILD_ID = "os.build_id";
/**
 * Search name for {@link attributes.OS_DESCRIPTION}. `os.description`
 */
declare const SEARCH_OS__DESCRIPTION = "os.description";
/**
 * Search name for {@link attributes.OS_KERNEL_VERSION}. `os.kernel_version`
 */
declare const SEARCH_OS__KERNEL_VERSION = "os.kernel_version";
/**
 * Search name for {@link attributes.OS_NAME}. `os.name`
 */
declare const SEARCH_OS__NAME = "os.name";
/**
 * Search name for {@link attributes.OS_RAW_DESCRIPTION}. `os.raw_description`
 */
declare const SEARCH_OS__RAW_DESCRIPTION = "os.raw_description";
/**
 * Search name for {@link attributes.OS_ROOTED}. `os.rooted`
 */
declare const SEARCH_OS__ROOTED = "os.rooted";
/**
 * Search name for {@link attributes.OS_THEME}. `os.theme`
 */
declare const SEARCH_OS__THEME = "os.theme";
/**
 * Search name for {@link attributes.OS_TYPE}. `os.type`
 */
declare const SEARCH_OS__TYPE = "os.type";
/**
 * Search name for {@link attributes.OS_VERSION}. `os.version`
 */
declare const SEARCH_OS__VERSION = "os.version";
/**
 * Search name for {@link attributes.SENTRY_KIND}. `otel.kind`
 *
 * @deprecated Use {@link SEARCH_SPAN__KIND} (`span.kind`) instead
 */
declare const SEARCH_OTEL__KIND = "otel.kind";
/**
 * Search name for {@link attributes.OTEL_SCOPE_NAME}. `otel.scope.name`
 */
declare const SEARCH_OTEL__SCOPE__NAME = "otel.scope.name";
/**
 * Search name for {@link attributes.OTEL_SCOPE_VERSION}. `otel.scope.version`
 */
declare const SEARCH_OTEL__SCOPE__VERSION = "otel.scope.version";
/**
 * Search name for {@link attributes.OTEL_STATUS_CODE}. `otel.status_code`
 */
declare const SEARCH_OTEL__STATUS_CODE = "otel.status_code";
/**
 * Search name for {@link attributes.OTEL_STATUS_DESCRIPTION}. `otel.status_description`
 */
declare const SEARCH_OTEL__STATUS_DESCRIPTION = "otel.status_description";
/**
 * Search name for {@link attributes.PARAMS_KEY}. `params.<key>`
 */
declare const SEARCH_PARAMS__KEY = "params.<key>";
/**
 * Search name for {@link attributes.PERFORMANCE_ACTIVATIONSTART}. `performance.activationStart`
 *
 * @deprecated Use {@link SEARCH_BROWSER__PERFORMANCE__NAVIGATION__ACTIVATION_START} (`browser.performance.navigation.activation_start`) instead
 */
declare const SEARCH_PERFORMANCE__ACTIVATIONSTART = "performance.activationStart";
/**
 * Search name for {@link attributes.PERFORMANCE_TIMEORIGIN}. `performance.timeOrigin`
 *
 * @deprecated Use {@link SEARCH_BROWSER__PERFORMANCE__TIME_ORIGIN} (`browser.performance.time_origin`) instead
 */
declare const SEARCH_PERFORMANCE__TIMEORIGIN = "performance.timeOrigin";
/**
 * Search name for {@link attributes.SENTRY_PLATFORM}. `platform`
 */
declare const SEARCH_PLATFORM = "platform";
/**
 * Search name for {@link attributes.PORT}. `port`
 *
 * @deprecated Use {@link SEARCH_SERVER__PORT} (`server.port`) instead
 */
declare const SEARCH_PORT = "port";
/**
 * Search name for {@link attributes.PREVIOUS_ROUTE}. `previous_route`
 */
declare const SEARCH_PREVIOUS_ROUTE = "previous_route";
/**
 * Search name for {@link attributes.PROCESS_COMMAND_ARGS}. `process.command_args`
 */
declare const SEARCH_PROCESS__COMMAND_ARGS = "process.command_args";
/**
 * Search name for {@link attributes.PROCESS_EXECUTABLE_NAME}. `process.executable.name`
 */
declare const SEARCH_PROCESS__EXECUTABLE__NAME = "process.executable.name";
/**
 * Search name for {@link attributes.PROCESS_PID}. `process.pid`
 */
declare const SEARCH_PROCESS__PID = "process.pid";
/**
 * Search name for {@link attributes.PROCESS_RUNTIME_DESCRIPTION}. `process.runtime.description`
 */
declare const SEARCH_PROCESS__RUNTIME__DESCRIPTION = "process.runtime.description";
/**
 * Search name for {@link attributes.PROCESS_RUNTIME_ENGINE_NAME}. `process.runtime.engine.name`
 */
declare const SEARCH_PROCESS__RUNTIME__ENGINE__NAME = "process.runtime.engine.name";
/**
 * Search name for {@link attributes.PROCESS_RUNTIME_ENGINE_VERSION}. `process.runtime.engine.version`
 */
declare const SEARCH_PROCESS__RUNTIME__ENGINE__VERSION = "process.runtime.engine.version";
/**
 * Search name for {@link attributes.PROCESS_RUNTIME_NAME}. `process.runtime.name`
 */
declare const SEARCH_PROCESS__RUNTIME__NAME = "process.runtime.name";
/**
 * Search name for {@link attributes.PROCESS_RUNTIME_VERSION}. `process.runtime.version`
 */
declare const SEARCH_PROCESS__RUNTIME__VERSION = "process.runtime.version";
/**
 * Search name for {@link attributes.SENTRY_PROFILE_ID}. `profile.id`
 */
declare const SEARCH_PROFILE__ID = "profile.id";
/**
 * Search name for {@link attributes.SENTRY_PROFILE_ID}. `profile_id`
 *
 * @deprecated Use {@link SEARCH_PROFILE__ID} (`profile.id`) instead
 */
declare const SEARCH_PROFILE_ID = "profile_id";
/**
 * Search name for {@link attributes.SENTRY_PROFILER_ID}. `profiler.id`
 */
declare const SEARCH_PROFILER__ID = "profiler.id";
/**
 * Search name for {@link attributes.QUERY}. `query`
 *
 * @deprecated Use {@link SEARCH_DB__QUERY__TEXT} (`db.query.text`) instead
 */
declare const SEARCH_QUERY = "query";
/**
 * Search name for {@link attributes.QUERY_KEY}. `query.<key>`
 *
 * @deprecated Use {@link SEARCH_URL__QUERY} (`url.query`) instead
 */
declare const SEARCH_QUERY__KEY = "query.<key>";
/**
 * Search name for {@link attributes.REACT_VERSION}. `react.version`
 */
declare const SEARCH_REACT__VERSION = "react.version";
/**
 * Search name for {@link attributes.REDIS_COMMAND}. `redis.command`
 *
 * @deprecated Use {@link SEARCH_DB__OPERATION__NAME} (`db.operation.name`) instead
 */
declare const SEARCH_REDIS__COMMAND = "redis.command";
/**
 * Search name for {@link attributes.REDIS_KEY}. `redis.key`
 *
 * @deprecated Use {@link SEARCH_DB__REDIS__KEY} (`db.redis.key`) instead
 */
declare const SEARCH_REDIS__KEY = "redis.key";
/**
 * Search name for {@link attributes.SENTRY_RELEASE}. `release`
 */
declare const SEARCH_RELEASE = "release";
/**
 * Search name for {@link attributes.REMIX_ACTION_FORM_DATA_KEY}. `remix.action_form_data.<key>`
 */
declare const SEARCH_REMIX__ACTION_FORM_DATA__KEY = "remix.action_form_data.<key>";
/**
 * Search name for {@link attributes.SENTRY_REPLAY_ID}. `replay.id`
 */
declare const SEARCH_REPLAY__ID = "replay.id";
/**
 * Search name for {@link attributes.SENTRY_REPLAY_ID}. `replay_id`
 *
 * @deprecated Use {@link SEARCH_REPLAY__ID} (`replay.id`) instead
 */
declare const SEARCH_REPLAY_ID = "replay_id";
/**
 * Search name for {@link attributes.SENTRY_ENVIRONMENT}. `resource.deployment.environment`
 *
 * @deprecated Use {@link SEARCH_ENVIRONMENT} (`environment`) instead
 */
declare const SEARCH_RESOURCE__DEPLOYMENT__ENVIRONMENT = "resource.deployment.environment";
/**
 * Search name for {@link attributes.SENTRY_ENVIRONMENT}. `resource.deployment.environment.name`
 *
 * @deprecated Use {@link SEARCH_ENVIRONMENT} (`environment`) instead
 */
declare const SEARCH_RESOURCE__DEPLOYMENT__ENVIRONMENT__NAME = "resource.deployment.environment.name";
/**
 * Search name for {@link attributes.RESOURCE_RENDER_BLOCKING_STATUS}. `resource.render_blocking_status`
 */
declare const SEARCH_RESOURCE__RENDER_BLOCKING_STATUS = "resource.render_blocking_status";
/**
 * Search name for {@link attributes.ROUTE}. `route`
 *
 * @deprecated Use {@link SEARCH_HTTP__ROUTE} (`http.route`) instead
 */
declare const SEARCH_ROUTE = "route";
/**
 * Search name for {@link attributes.ROUTER_NAVIGATION_ORIGIN}. `router.navigation.origin`
 */
declare const SEARCH_ROUTER__NAVIGATION__ORIGIN = "router.navigation.origin";
/**
 * Search name for {@link attributes.ROUTER_NAVIGATION_ROUTE_ID}. `router.navigation.route.id`
 */
declare const SEARCH_ROUTER__NAVIGATION__ROUTE__ID = "router.navigation.route.id";
/**
 * Search name for {@link attributes.ROUTER_NAVIGATION_TYPE}. `router.navigation.type`
 */
declare const SEARCH_ROUTER__NAVIGATION__TYPE = "router.navigation.type";
/**
 * Search name for {@link attributes.RPC_GRPC_STATUS_CODE}. `rpc.grpc.status_code`
 *
 * @deprecated Use {@link SEARCH_RPC__RESPONSE__STATUS_CODE} (`rpc.response.status_code`) instead
 */
declare const SEARCH_RPC__GRPC__STATUS_CODE = "rpc.grpc.status_code";
/**
 * Search name for {@link attributes.RPC_METHOD}. `rpc.method`
 */
declare const SEARCH_RPC__METHOD = "rpc.method";
/**
 * Search name for {@link attributes.RPC_RESPONSE_STATUS_CODE}. `rpc.response.status_code`
 */
declare const SEARCH_RPC__RESPONSE__STATUS_CODE = "rpc.response.status_code";
/**
 * Search name for {@link attributes.RPC_SERVICE}. `rpc.service`
 */
declare const SEARCH_RPC__SERVICE = "rpc.service";
/**
 * Search name for {@link attributes.RPC_SYSTEM}. `rpc.system`
 *
 * @deprecated Use {@link SEARCH_RPC__SYSTEM__NAME} (`rpc.system.name`) instead
 */
declare const SEARCH_RPC__SYSTEM = "rpc.system";
/**
 * Search name for {@link attributes.RPC_SYSTEM_NAME}. `rpc.system.name`
 */
declare const SEARCH_RPC__SYSTEM__NAME = "rpc.system.name";
/**
 * Search name for {@link attributes.RUNTIME_BUILD}. `runtime.build`
 *
 * @deprecated
 */
declare const SEARCH_RUNTIME__BUILD = "runtime.build";
/**
 * Search name for {@link attributes.RUNTIME_NAME}. `runtime.name`
 *
 * @deprecated Use {@link SEARCH_PROCESS__RUNTIME__NAME} (`process.runtime.name`) instead
 */
declare const SEARCH_RUNTIME__NAME = "runtime.name";
/**
 * Search name for {@link attributes.RUNTIME_RAW_DESCRIPTION}. `runtime.raw_description`
 *
 * @deprecated Use {@link SEARCH_PROCESS__RUNTIME__DESCRIPTION} (`process.runtime.description`) instead
 */
declare const SEARCH_RUNTIME__RAW_DESCRIPTION = "runtime.raw_description";
/**
 * Search name for {@link attributes.RUNTIME_VERSION}. `runtime.version`
 *
 * @deprecated Use {@link SEARCH_PROCESS__RUNTIME__VERSION} (`process.runtime.version`) instead
 */
declare const SEARCH_RUNTIME__VERSION = "runtime.version";
/**
 * Search name for {@link attributes.SCORE_KEY}. `score.<key>`
 */
declare const SEARCH_SCORE__KEY = "score.<key>";
/**
 * Search name for {@link attributes.SCORE_RATIO_KEY}. `score.ratio.<key>`
 */
declare const SEARCH_SCORE__RATIO__KEY = "score.ratio.<key>";
/**
 * Search name for {@link attributes.SCORE_TOTAL}. `score.total`
 */
declare const SEARCH_SCORE__TOTAL = "score.total";
/**
 * Search name for {@link attributes.SCORE_WEIGHT_KEY}. `score.weight.<key>`
 */
declare const SEARCH_SCORE__WEIGHT__KEY = "score.weight.<key>";
/**
 * Search name for {@link attributes.SENTRY_SDK_NAME}. `sdk.name`
 */
declare const SEARCH_SDK__NAME = "sdk.name";
/**
 * Search name for {@link attributes.SENTRY_SDK_VERSION}. `sdk.version`
 */
declare const SEARCH_SDK__VERSION = "sdk.version";
/**
 * Search name for {@link attributes.SENTRY_ACTION}. `sentry.action`
 *
 * @deprecated Use {@link SEARCH_SPAN__ACTION} (`span.action`) instead
 */
declare const SEARCH_SENTRY__ACTION = "sentry.action";
/**
 * Search name for {@link attributes.SENTRY_BROWSER_VERSION}. `sentry.browser.version`
 *
 * @deprecated Use {@link SEARCH_BROWSER__VERSION} (`browser.version`) instead
 */
declare const SEARCH_SENTRY__BROWSER__VERSION = "sentry.browser.version";
/**
 * Search name for {@link attributes.SENTRY_CANCELLATION_REASON}. `sentry.cancellation_reason`
 */
declare const SEARCH_SENTRY__CANCELLATION_REASON = "sentry.cancellation_reason";
/**
 * Search name for {@link attributes.SENTRY_CATEGORY}. `sentry.category`
 *
 * @deprecated Use {@link SEARCH_SPAN__CATEGORY} (`span.category`) instead
 */
declare const SEARCH_SENTRY__CATEGORY = "sentry.category";
/**
 * Search name for {@link attributes.SENTRY_CLIENT_SAMPLE_RATE}. `sentry.client_sample_rate`
 *
 * @deprecated Use {@link SEARCH_CLIENT_SAMPLE_RATE} (`client_sample_rate`) instead
 */
declare const SEARCH_SENTRY__CLIENT_SAMPLE_RATE = "sentry.client_sample_rate";
/**
 * Search name for {@link attributes.SENTRY_DESCRIPTION}. `sentry.description`
 */
declare const SEARCH_SENTRY__DESCRIPTION = "sentry.description";
/**
 * Search name for {@link attributes.SENTRY_DIST}. `sentry.dist`
 */
declare const SEARCH_SENTRY__DIST = "sentry.dist";
/**
 * Search name for {@link attributes.SENTRY_DOMAIN}. `sentry.domain`
 *
 * @deprecated Use {@link SEARCH_SPAN__DOMAIN} (`span.domain`) instead
 */
declare const SEARCH_SENTRY__DOMAIN = "sentry.domain";
/**
 * Search name for {@link attributes.SENTRY_DSC_ENVIRONMENT}. `sentry.dsc.environment`
 */
declare const SEARCH_SENTRY__DSC__ENVIRONMENT = "sentry.dsc.environment";
/**
 * Search name for {@link attributes.SENTRY_DSC_PROJECT_ID}. `sentry.dsc.project_id`
 */
declare const SEARCH_SENTRY__DSC__PROJECT_ID = "sentry.dsc.project_id";
/**
 * Search name for {@link attributes.SENTRY_DSC_PUBLIC_KEY}. `sentry.dsc.public_key`
 */
declare const SEARCH_SENTRY__DSC__PUBLIC_KEY = "sentry.dsc.public_key";
/**
 * Search name for {@link attributes.SENTRY_DSC_RELEASE}. `sentry.dsc.release`
 */
declare const SEARCH_SENTRY__DSC__RELEASE = "sentry.dsc.release";
/**
 * Search name for {@link attributes.SENTRY_DSC_SAMPLE_RATE}. `sentry.dsc.sample_rate`
 */
declare const SEARCH_SENTRY__DSC__SAMPLE_RATE = "sentry.dsc.sample_rate";
/**
 * Search name for {@link attributes.SENTRY_DSC_SAMPLED}. `sentry.dsc.sampled`
 */
declare const SEARCH_SENTRY__DSC__SAMPLED = "sentry.dsc.sampled";
/**
 * Search name for {@link attributes.SENTRY_DSC_TRACE_ID}. `sentry.dsc.trace_id`
 */
declare const SEARCH_SENTRY__DSC__TRACE_ID = "sentry.dsc.trace_id";
/**
 * Search name for {@link attributes.SENTRY_DSC_TRANSACTION}. `sentry.dsc.transaction`
 */
declare const SEARCH_SENTRY__DSC__TRANSACTION = "sentry.dsc.transaction";
/**
 * Search name for {@link attributes.SENTRY_ENVIRONMENT}. `sentry.environment`
 *
 * @deprecated Use {@link SEARCH_ENVIRONMENT} (`environment`) instead
 */
declare const SEARCH_SENTRY__ENVIRONMENT = "sentry.environment";
/**
 * Search name for {@link attributes.SENTRY_EVENT_SERIALIZED_BREADCRUMBS}. `sentry.event.serialized_breadcrumbs`
 */
declare const SEARCH_SENTRY__EVENT__SERIALIZED_BREADCRUMBS = "sentry.event.serialized_breadcrumbs";
/**
 * Search name for {@link attributes.SENTRY_EVENT_SERIALIZED_CONTEXTS}. `sentry.event.serialized_contexts`
 */
declare const SEARCH_SENTRY__EVENT__SERIALIZED_CONTEXTS = "sentry.event.serialized_contexts";
/**
 * Search name for {@link attributes.SENTRY_EVENT_SERIALIZED_EXTRA}. `sentry.event.serialized_extra`
 */
declare const SEARCH_SENTRY__EVENT__SERIALIZED_EXTRA = "sentry.event.serialized_extra";
/**
 * Search name for {@link attributes.SENTRY_EVENT_SERIALIZED_META}. `sentry.event.serialized_meta`
 */
declare const SEARCH_SENTRY__EVENT__SERIALIZED_META = "sentry.event.serialized_meta";
/**
 * Search name for {@link attributes.SENTRY_EXCLUSIVE_TIME}. `sentry.exclusive_time`
 */
declare const SEARCH_SENTRY__EXCLUSIVE_TIME = "sentry.exclusive_time";
/**
 * Search name for {@link attributes.FRAMES_FROZEN}. `sentry.frames.frozen`
 *
 * @deprecated Use {@link SEARCH_MOBILE__FROZEN_FRAMES} (`mobile.frozen_frames`) instead
 */
declare const SEARCH_SENTRY__FRAMES__FROZEN = "sentry.frames.frozen";
/**
 * Search name for {@link attributes.FRAMES_SLOW}. `sentry.frames.slow`
 *
 * @deprecated Use {@link SEARCH_MOBILE__SLOW_FRAMES} (`mobile.slow_frames`) instead
 */
declare const SEARCH_SENTRY__FRAMES__SLOW = "sentry.frames.slow";
/**
 * Search name for {@link attributes.FRAMES_TOTAL}. `sentry.frames.total`
 *
 * @deprecated Use {@link SEARCH_MOBILE__TOTAL_FRAMES} (`mobile.total_frames`) instead
 */
declare const SEARCH_SENTRY__FRAMES__TOTAL = "sentry.frames.total";
/**
 * Search name for {@link attributes.SENTRY_GRAPHQL_OPERATION}. `sentry.graphql.operation`
 */
declare const SEARCH_SENTRY__GRAPHQL__OPERATION = "sentry.graphql.operation";
/**
 * Search name for {@link attributes.SENTRY_GROUP}. `sentry.group`
 *
 * @deprecated Use {@link SEARCH_SPAN__GROUP} (`span.group`) instead
 */
declare const SEARCH_SENTRY__GROUP = "sentry.group";
/**
 * Search name for {@link attributes.SENTRY_HTTP_PREFETCH}. `sentry.http.prefetch`
 */
declare const SEARCH_SENTRY__HTTP__PREFETCH = "sentry.http.prefetch";
/**
 * Search name for {@link attributes.SENTRY_IDLE_SPAN_FINISH_REASON}. `sentry.idle_span_finish_reason`
 */
declare const SEARCH_SENTRY__IDLE_SPAN_FINISH_REASON = "sentry.idle_span_finish_reason";
/**
 * Search name for {@link attributes.SENTRY_IS_REMOTE}. `sentry.is_remote`
 */
declare const SEARCH_SENTRY__IS_REMOTE = "sentry.is_remote";
/**
 * Search name for {@link attributes.SENTRY_KIND}. `sentry.kind`
 *
 * @deprecated Use {@link SEARCH_SPAN__KIND} (`span.kind`) instead
 */
declare const SEARCH_SENTRY__KIND = "sentry.kind";
/**
 * Search name for {@link attributes.SENTRY_MAIN_THREAD}. `sentry.main_thread`
 */
declare const SEARCH_SENTRY__MAIN_THREAD = "sentry.main_thread";
/**
 * Search name for {@link attributes.SENTRY_MESSAGE_PARAMETER_KEY}. `sentry.message.parameter.<key>`
 */
declare const SEARCH_SENTRY__MESSAGE__PARAMETER__KEY = "sentry.message.parameter.<key>";
/**
 * Search name for {@link attributes.SENTRY_MESSAGE_TEMPLATE}. `sentry.message.template`
 */
declare const SEARCH_SENTRY__MESSAGE__TEMPLATE = "sentry.message.template";
/**
 * Search name for {@link attributes.SENTRY_METRIC_SOURCE}. `sentry.metric.source`
 */
declare const SEARCH_SENTRY__METRIC__SOURCE = "sentry.metric.source";
/**
 * Search name for {@link attributes.SENTRY_MOBILE}. `sentry.mobile`
 */
declare const SEARCH_SENTRY__MOBILE = "sentry.mobile";
/**
 * Search name for {@link attributes.SENTRY_MODULE_KEY}. `sentry.module.<key>`
 */
declare const SEARCH_SENTRY__MODULE__KEY = "sentry.module.<key>";
/**
 * Search name for {@link attributes.SENTRY_NEXTJS_SSR_FUNCTION_ROUTE}. `sentry.nextjs.ssr.function.route`
 */
declare const SEARCH_SENTRY__NEXTJS__SSR__FUNCTION__ROUTE = "sentry.nextjs.ssr.function.route";
/**
 * Search name for {@link attributes.SENTRY_NEXTJS_SSR_FUNCTION_TYPE}. `sentry.nextjs.ssr.function.type`
 */
declare const SEARCH_SENTRY__NEXTJS__SSR__FUNCTION__TYPE = "sentry.nextjs.ssr.function.type";
/**
 * Search name for {@link attributes.SENTRY_NORMALIZED_DB_QUERY}. `sentry.normalized_db_query`
 */
declare const SEARCH_SENTRY__NORMALIZED_DB_QUERY = "sentry.normalized_db_query";
/**
 * Search name for {@link attributes.SENTRY_NORMALIZED_DB_QUERY_HASH}. `sentry.normalized_db_query.hash`
 */
declare const SEARCH_SENTRY__NORMALIZED_DB_QUERY__HASH = "sentry.normalized_db_query.hash";
/**
 * Search name for {@link attributes.SENTRY_NORMALIZED_DESCRIPTION}. `sentry.normalized_description`
 */
declare const SEARCH_SENTRY__NORMALIZED_DESCRIPTION = "sentry.normalized_description";
/**
 * Search name for {@link attributes.SENTRY_OBSERVED_TIMESTAMP_NANOS}. `sentry.observed_timestamp_nanos`
 */
declare const SEARCH_SENTRY__OBSERVED_TIMESTAMP_NANOS = "sentry.observed_timestamp_nanos";
/**
 * Search name for {@link attributes.SENTRY_OP}. `sentry.op`
 *
 * @deprecated Use {@link SEARCH_SPAN__OP} (`span.op`) instead
 */
declare const SEARCH_SENTRY__OP = "sentry.op";
/**
 * Search name for {@link attributes.SENTRY_ORIGIN}. `sentry.origin`
 *
 * @deprecated Use {@link SEARCH_ORIGIN} (`origin`) instead
 */
declare const SEARCH_SENTRY__ORIGIN = "sentry.origin";
/**
 * Search name for {@link attributes.SENTRY_PAGELOAD_SPAN_ID}. `sentry.pageload.span_id`
 */
declare const SEARCH_SENTRY__PAGELOAD__SPAN_ID = "sentry.pageload.span_id";
/**
 * Search name for {@link attributes.SENTRY_PLATFORM}. `sentry.platform`
 *
 * @deprecated Use {@link SEARCH_PLATFORM} (`platform`) instead
 */
declare const SEARCH_SENTRY__PLATFORM = "sentry.platform";
/**
 * Search name for {@link attributes.SENTRY_PROFILE_ID}. `sentry.profile_id`
 *
 * @deprecated Use {@link SEARCH_PROFILE__ID} (`profile.id`) instead
 */
declare const SEARCH_SENTRY__PROFILE_ID = "sentry.profile_id";
/**
 * Search name for {@link attributes.SENTRY_PROFILER_ID}. `sentry.profiler_id`
 *
 * @deprecated Use {@link SEARCH_PROFILER__ID} (`profiler.id`) instead
 */
declare const SEARCH_SENTRY__PROFILER_ID = "sentry.profiler_id";
/**
 * Search name for {@link attributes.SENTRY_RELAY_INGRESS}. `sentry.relay.ingress`
 */
declare const SEARCH_SENTRY__RELAY__INGRESS = "sentry.relay.ingress";
/**
 * Search name for {@link attributes.SENTRY_RELAY_PIPELINE}. `sentry.relay.pipeline`
 */
declare const SEARCH_SENTRY__RELAY__PIPELINE = "sentry.relay.pipeline";
/**
 * Search name for {@link attributes.SENTRY_RELEASE}. `sentry.release`
 *
 * @deprecated Use {@link SEARCH_RELEASE} (`release`) instead
 */
declare const SEARCH_SENTRY__RELEASE = "sentry.release";
/**
 * Search name for {@link attributes.SENTRY_REPLAY_ID}. `sentry.replay_id`
 *
 * @deprecated Use {@link SEARCH_REPLAY__ID} (`replay.id`) instead
 */
declare const SEARCH_SENTRY__REPLAY_ID = "sentry.replay_id";
/**
 * Search name for {@link attributes.SENTRY_REPLAY_IS_BUFFERING}. `sentry.replay_is_buffering`
 */
declare const SEARCH_SENTRY__REPLAY_IS_BUFFERING = "sentry.replay_is_buffering";
/**
 * Search name for {@link attributes.SENTRY_REPORT_EVENT}. `sentry.report_event`
 *
 * @deprecated
 */
declare const SEARCH_SENTRY__REPORT_EVENT = "sentry.report_event";
/**
 * Search name for {@link attributes.SENTRY_SDK_INTEGRATIONS}. `sentry.sdk.integrations`
 */
declare const SEARCH_SENTRY__SDK__INTEGRATIONS = "sentry.sdk.integrations";
/**
 * Search name for {@link attributes.SENTRY_SDK_NAME}. `sentry.sdk.name`
 *
 * @deprecated Use {@link SEARCH_SDK__NAME} (`sdk.name`) instead
 */
declare const SEARCH_SENTRY__SDK__NAME = "sentry.sdk.name";
/**
 * Search name for {@link attributes.SENTRY_SDK_VERSION}. `sentry.sdk.version`
 *
 * @deprecated Use {@link SEARCH_SDK__VERSION} (`sdk.version`) instead
 */
declare const SEARCH_SENTRY__SDK__VERSION = "sentry.sdk.version";
/**
 * Search name for {@link attributes.SENTRY_SEGMENT_ID}. `sentry.segment.id`
 */
declare const SEARCH_SENTRY__SEGMENT__ID = "sentry.segment.id";
/**
 * Search name for {@link attributes.SENTRY_SEGMENT_NAME}. `sentry.segment.name`
 *
 * @deprecated Use {@link SEARCH_TRANSACTION} (`transaction`) instead
 */
declare const SEARCH_SENTRY__SEGMENT__NAME = "sentry.segment.name";
/**
 * Search name for {@link attributes.SENTRY_SEGMENT_NAME_SOURCE}. `sentry.segment.name.source`
 */
declare const SEARCH_SENTRY__SEGMENT__NAME__SOURCE = "sentry.segment.name.source";
/**
 * Search name for {@link attributes._SENTRY_SEGMENT_ID}. `sentry.segment_id`
 *
 * @deprecated Use {@link SEARCH_TRANSACTION__SPAN_ID} (`transaction.span_id`) instead
 */
declare const SEARCH_SENTRY__SEGMENT_ID = "sentry.segment_id";
/**
 * Search name for {@link attributes.SENTRY_SERVER_SAMPLE_RATE}. `sentry.server_sample_rate`
 *
 * @deprecated Use {@link SEARCH_SERVER_SAMPLE_RATE} (`server_sample_rate`) instead
 */
declare const SEARCH_SENTRY__SERVER_SAMPLE_RATE = "sentry.server_sample_rate";
/**
 * Search name for {@link attributes.SENTRY_SOURCE}. `sentry.source`
 *
 * @deprecated
 */
declare const SEARCH_SENTRY__SOURCE = "sentry.source";
/**
 * Search name for {@link attributes.SENTRY_SPAN_SOURCE}. `sentry.span.source`
 *
 * @deprecated
 */
declare const SEARCH_SENTRY__SPAN__SOURCE = "sentry.span.source";
/**
 * Search name for {@link attributes.SENTRY_STATUS}. `sentry.status`
 *
 * @deprecated Use {@link SEARCH_SPAN__STATUS} (`span.status`) instead
 */
declare const SEARCH_SENTRY__STATUS = "sentry.status";
/**
 * Search name for {@link attributes.SENTRY_STATUS_MESSAGE}. `sentry.status.message`
 *
 * @deprecated Use {@link SEARCH_SPAN__STATUS__MESSAGE} (`span.status.message`) instead
 */
declare const SEARCH_SENTRY__STATUS__MESSAGE = "sentry.status.message";
/**
 * Search name for {@link attributes.SENTRY_STATUS_CODE}. `sentry.status_code`
 *
 * @deprecated Use {@link SEARCH_SPAN__STATUS_CODE} (`span.status_code`) instead
 */
declare const SEARCH_SENTRY__STATUS_CODE = "sentry.status_code";
/**
 * Search name for {@link attributes.SENTRY_SVELTEKIT_NAVIGATION_FROM}. `sentry.sveltekit.navigation.from`
 *
 * @deprecated Use {@link SEARCH_ROUTER__NAVIGATION__ORIGIN} (`router.navigation.origin`) instead
 */
declare const SEARCH_SENTRY__SVELTEKIT__NAVIGATION__FROM = "sentry.sveltekit.navigation.from";
/**
 * Search name for {@link attributes.SENTRY_SVELTEKIT_NAVIGATION_TO}. `sentry.sveltekit.navigation.to`
 *
 * @deprecated
 */
declare const SEARCH_SENTRY__SVELTEKIT__NAVIGATION__TO = "sentry.sveltekit.navigation.to";
/**
 * Search name for {@link attributes.SENTRY_SVELTEKIT_NAVIGATION_TYPE}. `sentry.sveltekit.navigation.type`
 *
 * @deprecated Use {@link SEARCH_ROUTER__NAVIGATION__TYPE} (`router.navigation.type`) instead
 */
declare const SEARCH_SENTRY__SVELTEKIT__NAVIGATION__TYPE = "sentry.sveltekit.navigation.type";
/**
 * Search name for {@link attributes.SENTRY_TIMESTAMP_SEQUENCE}. `sentry.timestamp.sequence`
 */
declare const SEARCH_SENTRY__TIMESTAMP__SEQUENCE = "sentry.timestamp.sequence";
/**
 * Search name for {@link attributes.SENTRY_TRACE_PARENT_SPAN_ID}. `sentry.trace.parent_span_id`
 *
 * @deprecated
 */
declare const SEARCH_SENTRY__TRACE__PARENT_SPAN_ID = "sentry.trace.parent_span_id";
/**
 * Search name for {@link attributes.SENTRY_TRACE_STATUS}. `sentry.trace.status`
 *
 * @deprecated Use {@link SEARCH_TRACE__STATUS} (`trace.status`) instead
 */
declare const SEARCH_SENTRY__TRACE__STATUS = "sentry.trace.status";
/**
 * Search name for {@link attributes.SENTRY_TRACE_LIFECYCLE}. `sentry.trace_lifecycle`
 *
 * @deprecated Use {@link SEARCH_TRACE_LIFECYCLE} (`trace_lifecycle`) instead
 */
declare const SEARCH_SENTRY__TRACE_LIFECYCLE = "sentry.trace_lifecycle";
/**
 * Search name for {@link attributes.SENTRY_SEGMENT_NAME}. `sentry.transaction`
 *
 * @deprecated Use {@link SEARCH_TRANSACTION} (`transaction`) instead
 */
declare const SEARCH_SENTRY__TRANSACTION = "sentry.transaction";
/**
 * Search name for {@link attributes.SENTRY_USER_IP}. `sentry.user.ip`
 *
 * @deprecated Use {@link SEARCH_USER__IP} (`user.ip`) instead
 */
declare const SEARCH_SENTRY__USER__IP = "sentry.user.ip";
/**
 * Search name for {@link attributes.SENTRY_USER_USERNAME}. `sentry.user.username`
 *
 * @deprecated Use {@link SEARCH_USER__USERNAME} (`user.username`) instead
 */
declare const SEARCH_SENTRY__USER__USERNAME = "sentry.user.username";
/**
 * Search name for {@link attributes.SERVER_ADDRESS}. `server.address`
 */
declare const SEARCH_SERVER__ADDRESS = "server.address";
/**
 * Search name for {@link attributes.SERVER_PORT}. `server.port`
 */
declare const SEARCH_SERVER__PORT = "server.port";
/**
 * Search name for {@link attributes.SERVER_NAME}. `server_name`
 *
 * @deprecated Use {@link SEARCH_DEVICE__NAME} (`device.name`) instead
 */
declare const SEARCH_SERVER_NAME = "server_name";
/**
 * Search name for {@link attributes.SENTRY_SERVER_SAMPLE_RATE}. `server_sample_rate`
 */
declare const SEARCH_SERVER_SAMPLE_RATE = "server_sample_rate";
/**
 * Search name for {@link attributes.SERVICE_NAME}. `service.name`
 */
declare const SEARCH_SERVICE__NAME = "service.name";
/**
 * Search name for {@link attributes.SENTRY_RELEASE}. `service.version`
 *
 * @deprecated Use {@link SEARCH_RELEASE} (`release`) instead
 */
declare const SEARCH_SERVICE__VERSION = "service.version";
/**
 * Search name for {@link attributes.SESSION_ID}. `session.id`
 */
declare const SEARCH_SESSION__ID = "session.id";
/**
 * Search name for {@link attributes.SENTRY_ACTION}. `span.action`
 */
declare const SEARCH_SPAN__ACTION = "span.action";
/**
 * Search name for {@link attributes.SENTRY_CATEGORY}. `span.category`
 */
declare const SEARCH_SPAN__CATEGORY = "span.category";
/**
 * Search name for {@link attributes.SENTRY_DOMAIN}. `span.domain`
 */
declare const SEARCH_SPAN__DOMAIN = "span.domain";
/**
 * Search name for {@link attributes.SENTRY_GROUP}. `span.group`
 */
declare const SEARCH_SPAN__GROUP = "span.group";
/**
 * Search name for {@link attributes.SENTRY_KIND}. `span.kind`
 */
declare const SEARCH_SPAN__KIND = "span.kind";
/**
 * Search name for {@link attributes.SENTRY_OP}. `span.op`
 */
declare const SEARCH_SPAN__OP = "span.op";
/**
 * Search name for {@link attributes.SENTRY_STATUS}. `span.status`
 */
declare const SEARCH_SPAN__STATUS = "span.status";
/**
 * Search name for {@link attributes.SENTRY_STATUS_MESSAGE}. `span.status.message`
 */
declare const SEARCH_SPAN__STATUS__MESSAGE = "span.status.message";
/**
 * Search name for {@link attributes.SENTRY_STATUS_CODE}. `span.status_code`
 */
declare const SEARCH_SPAN__STATUS_CODE = "span.status_code";
/**
 * Search name for {@link attributes.DB_SYSTEM}. `span.system`
 *
 * @deprecated Use {@link SEARCH_DB__SYSTEM} (`db.system`) instead
 */
declare const SEARCH_SPAN__SYSTEM = "span.system";
/**
 * Search name for {@link attributes.STALL_PERCENTAGE}. `stall_percentage`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__STALL__PERCENTAGE} (`app.vitals.stall.percentage`) instead
 */
declare const SEARCH_STALL_PERCENTAGE = "stall_percentage";
/**
 * Search name for {@link attributes.STALL_TOTAL_TIME}. `stall_total_time`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__STALL__DURATION} (`app.vitals.stall.duration`) instead
 */
declare const SEARCH_STALL_TOTAL_TIME = "stall_total_time";
/**
 * Search name for {@link attributes.STARLETTE_MIDDLEWARE_NAME}. `starlette.middleware_name`
 *
 * @deprecated Use {@link SEARCH_MIDDLEWARE__NAME} (`middleware.name`) instead
 */
declare const SEARCH_STARLETTE__MIDDLEWARE_NAME = "starlette.middleware_name";
/**
 * Search name for {@link attributes.STARLITE_MIDDLEWARE_NAME}. `starlite.middleware_name`
 *
 * @deprecated Use {@link SEARCH_MIDDLEWARE__NAME} (`middleware.name`) instead
 */
declare const SEARCH_STARLITE__MIDDLEWARE_NAME = "starlite.middleware_name";
/**
 * Search name for {@link attributes.STATE_TYPE}. `state.type`
 */
declare const SEARCH_STATE__TYPE = "state.type";
/**
 * Search name for {@link attributes.SUBPROCESS_PID}. `subprocess.pid`
 *
 * @deprecated Use {@link SEARCH_PROCESS__PID} (`process.pid`) instead
 */
declare const SEARCH_SUBPROCESS__PID = "subprocess.pid";
/**
 * Search name for {@link attributes.SVELTEKIT_LOAD_ENVIRONMENT}. `sveltekit.load.environment`
 */
declare const SEARCH_SVELTEKIT__LOAD__ENVIRONMENT = "sveltekit.load.environment";
/**
 * Search name for {@link attributes.SVELTEKIT_LOAD_NODE_ID}. `sveltekit.load.node_id`
 */
declare const SEARCH_SVELTEKIT__LOAD__NODE_ID = "sveltekit.load.node_id";
/**
 * Search name for {@link attributes.SVELTEKIT_LOAD_NODE_TYPE}. `sveltekit.load.node_type`
 */
declare const SEARCH_SVELTEKIT__LOAD__NODE_TYPE = "sveltekit.load.node_type";
/**
 * Search name for {@link attributes.SVELTEKIT_TRACING_ORIGINAL_NAME}. `sveltekit.tracing.original_name`
 */
declare const SEARCH_SVELTEKIT__TRACING__ORIGINAL_NAME = "sveltekit.tracing.original_name";
/**
 * Search name for {@link attributes.THREAD_ID}. `thread.id`
 */
declare const SEARCH_THREAD__ID = "thread.id";
/**
 * Search name for {@link attributes.THREAD_NAME}. `thread.name`
 */
declare const SEARCH_THREAD__NAME = "thread.name";
/**
 * Search name for {@link attributes.TIMBER_TAG}. `timber.tag`
 */
declare const SEARCH_TIMBER__TAG = "timber.tag";
/**
 * Search name for {@link attributes.TIME_TO_FULL_DISPLAY}. `time_to_full_display`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__TTFD__VALUE} (`app.vitals.ttfd.value`) instead
 */
declare const SEARCH_TIME_TO_FULL_DISPLAY = "time_to_full_display";
/**
 * Search name for {@link attributes.TIME_TO_INITIAL_DISPLAY}. `time_to_initial_display`
 *
 * @deprecated Use {@link SEARCH_APP__VITALS__TTID__VALUE} (`app.vitals.ttid.value`) instead
 */
declare const SEARCH_TIME_TO_INITIAL_DISPLAY = "time_to_initial_display";
/**
 * Search name for {@link attributes.SENTRY_TRACE_STATUS}. `trace.status`
 */
declare const SEARCH_TRACE__STATUS = "trace.status";
/**
 * Search name for {@link attributes.SENTRY_TRACE_LIFECYCLE}. `trace_lifecycle`
 */
declare const SEARCH_TRACE_LIFECYCLE = "trace_lifecycle";
/**
 * Search name for {@link attributes.SENTRY_SEGMENT_NAME}. `transaction`
 */
declare const SEARCH_TRANSACTION = "transaction";
/**
 * Search name for {@link attributes._SENTRY_SEGMENT_ID}. `transaction.span_id`
 */
declare const SEARCH_TRANSACTION__SPAN_ID = "transaction.span_id";
/**
 * Search name for {@link attributes.TRPC_PROCEDURE_PATH}. `trpc.procedure_path`
 */
declare const SEARCH_TRPC__PROCEDURE_PATH = "trpc.procedure_path";
/**
 * Search name for {@link attributes.TRPC_PROCEDURE_TYPE}. `trpc.procedure_type`
 */
declare const SEARCH_TRPC__PROCEDURE_TYPE = "trpc.procedure_type";
/**
 * Search name for {@link attributes.TTFB}. `ttfb`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__TTFB__VALUE} (`browser.web_vital.ttfb.value`) instead
 */
declare const SEARCH_TTFB = "ttfb";
/**
 * Search name for {@link attributes.TTFB_REQUESTTIME}. `ttfb.requestTime`
 *
 * @deprecated Use {@link SEARCH_BROWSER__WEB_VITAL__TTFB__REQUEST_TIME} (`browser.web_vital.ttfb.request_time`) instead
 */
declare const SEARCH_TTFB__REQUESTTIME = "ttfb.requestTime";
/**
 * Search name for {@link attributes.TYPE}. `type`
 */
declare const SEARCH_TYPE = "type";
/**
 * Search name for {@link attributes.UI_COMPONENT_NAME}. `ui.component_name`
 */
declare const SEARCH_UI__COMPONENT_NAME = "ui.component_name";
/**
 * Search name for {@link attributes.UI_CONTRIBUTES_TO_TTFD}. `ui.contributes_to_ttfd`
 */
declare const SEARCH_UI__CONTRIBUTES_TO_TTFD = "ui.contributes_to_ttfd";
/**
 * Search name for {@link attributes.UI_CONTRIBUTES_TO_TTID}. `ui.contributes_to_ttid`
 */
declare const SEARCH_UI__CONTRIBUTES_TO_TTID = "ui.contributes_to_ttid";
/**
 * Search name for {@link attributes.UI_ELEMENT_HEIGHT}. `ui.element.height`
 */
declare const SEARCH_UI__ELEMENT__HEIGHT = "ui.element.height";
/**
 * Search name for {@link attributes.UI_ELEMENT_ID}. `ui.element.id`
 */
declare const SEARCH_UI__ELEMENT__ID = "ui.element.id";
/**
 * Search name for {@link attributes.UI_ELEMENT_IDENTIFIER}. `ui.element.identifier`
 */
declare const SEARCH_UI__ELEMENT__IDENTIFIER = "ui.element.identifier";
/**
 * Search name for {@link attributes.UI_ELEMENT_LOAD_TIME}. `ui.element.load_time`
 */
declare const SEARCH_UI__ELEMENT__LOAD_TIME = "ui.element.load_time";
/**
 * Search name for {@link attributes.UI_ELEMENT_PAINT_TYPE}. `ui.element.paint_type`
 */
declare const SEARCH_UI__ELEMENT__PAINT_TYPE = "ui.element.paint_type";
/**
 * Search name for {@link attributes.UI_ELEMENT_RENDER_TIME}. `ui.element.render_time`
 */
declare const SEARCH_UI__ELEMENT__RENDER_TIME = "ui.element.render_time";
/**
 * Search name for {@link attributes.UI_ELEMENT_TYPE}. `ui.element.type`
 */
declare const SEARCH_UI__ELEMENT__TYPE = "ui.element.type";
/**
 * Search name for {@link attributes.UI_ELEMENT_URL}. `ui.element.url`
 */
declare const SEARCH_UI__ELEMENT__URL = "ui.element.url";
/**
 * Search name for {@link attributes.UI_ELEMENT_WIDTH}. `ui.element.width`
 */
declare const SEARCH_UI__ELEMENT__WIDTH = "ui.element.width";
/**
 * Search name for {@link attributes.URL}. `url`
 *
 * @deprecated Use {@link SEARCH_URL__FULL} (`url.full`) instead
 */
declare const SEARCH_URL = "url";
/**
 * Search name for {@link attributes.URL_DOMAIN}. `url.domain`
 */
declare const SEARCH_URL__DOMAIN = "url.domain";
/**
 * Search name for {@link attributes.URL_FRAGMENT}. `url.fragment`
 */
declare const SEARCH_URL__FRAGMENT = "url.fragment";
/**
 * Search name for {@link attributes.URL_FULL}. `url.full`
 */
declare const SEARCH_URL__FULL = "url.full";
/**
 * Search name for {@link attributes.URL_PATH}. `url.path`
 */
declare const SEARCH_URL__PATH = "url.path";
/**
 * Search name for {@link attributes.URL_PATH_PARAMETER_KEY}. `url.path.parameter.<key>`
 */
declare const SEARCH_URL__PATH__PARAMETER__KEY = "url.path.parameter.<key>";
/**
 * Search name for {@link attributes.URL_PATH_PARAMS_KEY}. `url.path.params.<key>`
 *
 * @deprecated Use {@link SEARCH_URL__PATH__PARAMETER__KEY} (`url.path.parameter.<key>`) instead
 */
declare const SEARCH_URL__PATH__PARAMS__KEY = "url.path.params.<key>";
/**
 * Search name for {@link attributes.URL_PORT}. `url.port`
 */
declare const SEARCH_URL__PORT = "url.port";
/**
 * Search name for {@link attributes.URL_QUERY}. `url.query`
 */
declare const SEARCH_URL__QUERY = "url.query";
/**
 * Search name for {@link attributes.URL_SAME_ORIGIN}. `url.same_origin`
 *
 * @deprecated Use {@link SEARCH_HTTP__REQUEST__SAME_ORIGIN} (`http.request.same_origin`) instead
 */
declare const SEARCH_URL__SAME_ORIGIN = "url.same_origin";
/**
 * Search name for {@link attributes.URL_SCHEME}. `url.scheme`
 */
declare const SEARCH_URL__SCHEME = "url.scheme";
/**
 * Search name for {@link attributes.URL_TEMPLATE}. `url.template`
 */
declare const SEARCH_URL__TEMPLATE = "url.template";
/**
 * Search name for {@link attributes.USER_EMAIL}. `user.email`
 */
declare const SEARCH_USER__EMAIL = "user.email";
/**
 * Search name for {@link attributes.USER_FULL_NAME}. `user.full_name`
 */
declare const SEARCH_USER__FULL_NAME = "user.full_name";
/**
 * Search name for {@link attributes.USER_GEO_CITY}. `user.geo.city`
 */
declare const SEARCH_USER__GEO__CITY = "user.geo.city";
/**
 * Search name for {@link attributes.USER_GEO_COUNTRY_CODE}. `user.geo.country_code`
 */
declare const SEARCH_USER__GEO__COUNTRY_CODE = "user.geo.country_code";
/**
 * Search name for {@link attributes.USER_GEO_REGION}. `user.geo.region`
 */
declare const SEARCH_USER__GEO__REGION = "user.geo.region";
/**
 * Search name for {@link attributes.USER_GEO_SUBDIVISION}. `user.geo.subdivision`
 */
declare const SEARCH_USER__GEO__SUBDIVISION = "user.geo.subdivision";
/**
 * Search name for {@link attributes.USER_HASH}. `user.hash`
 */
declare const SEARCH_USER__HASH = "user.hash";
/**
 * Search name for {@link attributes.USER_ID}. `user.id`
 */
declare const SEARCH_USER__ID = "user.id";
/**
 * Search name for {@link attributes.SENTRY_USER_IP}. `user.ip`
 */
declare const SEARCH_USER__IP = "user.ip";
/**
 * Search name for {@link attributes.USER_IP_ADDRESS}. `user.ip_address`
 */
declare const SEARCH_USER__IP_ADDRESS = "user.ip_address";
/**
 * Search name for {@link attributes.USER_NAME}. `user.name`
 */
declare const SEARCH_USER__NAME = "user.name";
/**
 * Search name for {@link attributes.USER_ROLES}. `user.roles`
 */
declare const SEARCH_USER__ROLES = "user.roles";
/**
 * Search name for {@link attributes.SENTRY_USER_USERNAME}. `user.username`
 */
declare const SEARCH_USER__USERNAME = "user.username";
/**
 * Search name for {@link attributes.USER_AGENT_ORIGINAL}. `user_agent.original`
 */
declare const SEARCH_USER_AGENT__ORIGINAL = "user_agent.original";
/**
 * Search name for {@link attributes.VERCEL_BRANCH}. `vercel.branch`
 */
declare const SEARCH_VERCEL__BRANCH = "vercel.branch";
/**
 * Search name for {@link attributes.VERCEL_BUILD_ID}. `vercel.build_id`
 */
declare const SEARCH_VERCEL__BUILD_ID = "vercel.build_id";
/**
 * Search name for {@link attributes.VERCEL_DEPLOYMENT_ID}. `vercel.deployment_id`
 */
declare const SEARCH_VERCEL__DEPLOYMENT_ID = "vercel.deployment_id";
/**
 * Search name for {@link attributes.VERCEL_DESTINATION}. `vercel.destination`
 */
declare const SEARCH_VERCEL__DESTINATION = "vercel.destination";
/**
 * Search name for {@link attributes.VERCEL_EDGE_TYPE}. `vercel.edge_type`
 */
declare const SEARCH_VERCEL__EDGE_TYPE = "vercel.edge_type";
/**
 * Search name for {@link attributes.VERCEL_ENTRYPOINT}. `vercel.entrypoint`
 */
declare const SEARCH_VERCEL__ENTRYPOINT = "vercel.entrypoint";
/**
 * Search name for {@link attributes.VERCEL_EXECUTION_REGION}. `vercel.execution_region`
 */
declare const SEARCH_VERCEL__EXECUTION_REGION = "vercel.execution_region";
/**
 * Search name for {@link attributes.VERCEL_ID}. `vercel.id`
 */
declare const SEARCH_VERCEL__ID = "vercel.id";
/**
 * Search name for {@link attributes.VERCEL_JA3_DIGEST}. `vercel.ja3_digest`
 */
declare const SEARCH_VERCEL__JA3_DIGEST = "vercel.ja3_digest";
/**
 * Search name for {@link attributes.VERCEL_JA4_DIGEST}. `vercel.ja4_digest`
 */
declare const SEARCH_VERCEL__JA4_DIGEST = "vercel.ja4_digest";
/**
 * Search name for {@link attributes.VERCEL_LOG_TYPE}. `vercel.log_type`
 */
declare const SEARCH_VERCEL__LOG_TYPE = "vercel.log_type";
/**
 * Search name for {@link attributes.VERCEL_PATH}. `vercel.path`
 */
declare const SEARCH_VERCEL__PATH = "vercel.path";
/**
 * Search name for {@link attributes.VERCEL_PROJECT_ID}. `vercel.project_id`
 */
declare const SEARCH_VERCEL__PROJECT_ID = "vercel.project_id";
/**
 * Search name for {@link attributes.VERCEL_PROJECT_NAME}. `vercel.project_name`
 */
declare const SEARCH_VERCEL__PROJECT_NAME = "vercel.project_name";
/**
 * Search name for {@link attributes.VERCEL_PROXY_CACHE_ID}. `vercel.proxy.cache_id`
 */
declare const SEARCH_VERCEL__PROXY__CACHE_ID = "vercel.proxy.cache_id";
/**
 * Search name for {@link attributes.VERCEL_PROXY_CLIENT_IP}. `vercel.proxy.client_ip`
 */
declare const SEARCH_VERCEL__PROXY__CLIENT_IP = "vercel.proxy.client_ip";
/**
 * Search name for {@link attributes.VERCEL_PROXY_HOST}. `vercel.proxy.host`
 */
declare const SEARCH_VERCEL__PROXY__HOST = "vercel.proxy.host";
/**
 * Search name for {@link attributes.VERCEL_PROXY_LAMBDA_REGION}. `vercel.proxy.lambda_region`
 */
declare const SEARCH_VERCEL__PROXY__LAMBDA_REGION = "vercel.proxy.lambda_region";
/**
 * Search name for {@link attributes.VERCEL_PROXY_METHOD}. `vercel.proxy.method`
 */
declare const SEARCH_VERCEL__PROXY__METHOD = "vercel.proxy.method";
/**
 * Search name for {@link attributes.VERCEL_PROXY_PATH}. `vercel.proxy.path`
 */
declare const SEARCH_VERCEL__PROXY__PATH = "vercel.proxy.path";
/**
 * Search name for {@link attributes.VERCEL_PROXY_PATH_TYPE}. `vercel.proxy.path_type`
 */
declare const SEARCH_VERCEL__PROXY__PATH_TYPE = "vercel.proxy.path_type";
/**
 * Search name for {@link attributes.VERCEL_PROXY_PATH_TYPE_VARIANT}. `vercel.proxy.path_type_variant`
 */
declare const SEARCH_VERCEL__PROXY__PATH_TYPE_VARIANT = "vercel.proxy.path_type_variant";
/**
 * Search name for {@link attributes.VERCEL_PROXY_REFERER}. `vercel.proxy.referer`
 */
declare const SEARCH_VERCEL__PROXY__REFERER = "vercel.proxy.referer";
/**
 * Search name for {@link attributes.VERCEL_PROXY_REGION}. `vercel.proxy.region`
 */
declare const SEARCH_VERCEL__PROXY__REGION = "vercel.proxy.region";
/**
 * Search name for {@link attributes.VERCEL_PROXY_RESPONSE_BYTE_SIZE}. `vercel.proxy.response_byte_size`
 */
declare const SEARCH_VERCEL__PROXY__RESPONSE_BYTE_SIZE = "vercel.proxy.response_byte_size";
/**
 * Search name for {@link attributes.VERCEL_PROXY_SCHEME}. `vercel.proxy.scheme`
 */
declare const SEARCH_VERCEL__PROXY__SCHEME = "vercel.proxy.scheme";
/**
 * Search name for {@link attributes.VERCEL_PROXY_STATUS_CODE}. `vercel.proxy.status_code`
 */
declare const SEARCH_VERCEL__PROXY__STATUS_CODE = "vercel.proxy.status_code";
/**
 * Search name for {@link attributes.VERCEL_PROXY_TIMESTAMP}. `vercel.proxy.timestamp`
 */
declare const SEARCH_VERCEL__PROXY__TIMESTAMP = "vercel.proxy.timestamp";
/**
 * Search name for {@link attributes.VERCEL_PROXY_USER_AGENT}. `vercel.proxy.user_agent`
 */
declare const SEARCH_VERCEL__PROXY__USER_AGENT = "vercel.proxy.user_agent";
/**
 * Search name for {@link attributes.VERCEL_PROXY_VERCEL_CACHE}. `vercel.proxy.vercel_cache`
 */
declare const SEARCH_VERCEL__PROXY__VERCEL_CACHE = "vercel.proxy.vercel_cache";
/**
 * Search name for {@link attributes.VERCEL_PROXY_VERCEL_ID}. `vercel.proxy.vercel_id`
 */
declare const SEARCH_VERCEL__PROXY__VERCEL_ID = "vercel.proxy.vercel_id";
/**
 * Search name for {@link attributes.VERCEL_PROXY_WAF_ACTION}. `vercel.proxy.waf_action`
 */
declare const SEARCH_VERCEL__PROXY__WAF_ACTION = "vercel.proxy.waf_action";
/**
 * Search name for {@link attributes.VERCEL_PROXY_WAF_RULE_ID}. `vercel.proxy.waf_rule_id`
 */
declare const SEARCH_VERCEL__PROXY__WAF_RULE_ID = "vercel.proxy.waf_rule_id";
/**
 * Search name for {@link attributes.VERCEL_REQUEST_ID}. `vercel.request_id`
 */
declare const SEARCH_VERCEL__REQUEST_ID = "vercel.request_id";
/**
 * Search name for {@link attributes.VERCEL_SOURCE}. `vercel.source`
 */
declare const SEARCH_VERCEL__SOURCE = "vercel.source";
/**
 * Search name for {@link attributes.VERCEL_STATUS_CODE}. `vercel.status_code`
 */
declare const SEARCH_VERCEL__STATUS_CODE = "vercel.status_code";
type AttributeSearchName = typeof SEARCH_ADDRESS | typeof SEARCH_AI__CITATIONS | typeof SEARCH_AI__COMPLETION_TOKENS__USED | typeof SEARCH_AI__DOCUMENTS | typeof SEARCH_AI__FINISH_REASON | typeof SEARCH_AI__FREQUENCY_PENALTY | typeof SEARCH_AI__FUNCTION_CALL | typeof SEARCH_AI__GENERATION_ID | typeof SEARCH_AI__INPUT_MESSAGES | typeof SEARCH_AI__IS_SEARCH_REQUIRED | typeof SEARCH_AI__METADATA | typeof SEARCH_AI__MODEL__ID | typeof SEARCH_AI__MODEL__PROVIDER | typeof SEARCH_AI__MODEL_ID | typeof SEARCH_AI__PIPELINE__NAME | typeof SEARCH_AI__PREAMBLE | typeof SEARCH_AI__PRESENCE_PENALTY | typeof SEARCH_AI__PROMPT | typeof SEARCH_AI__PROMPT__MESSAGES | typeof SEARCH_AI__PROMPT__TOOLS | typeof SEARCH_AI__PROMPT_TOKENS__USED | typeof SEARCH_AI__RAW_PROMPTING | typeof SEARCH_AI__RESPONSE__ID | typeof SEARCH_AI__RESPONSE__MODEL | typeof SEARCH_AI__RESPONSE__OBJECT | typeof SEARCH_AI__RESPONSE__TEXT | typeof SEARCH_AI__RESPONSE__TIMESTAMP | typeof SEARCH_AI__RESPONSE__TOOLCALLS | typeof SEARCH_AI__RESPONSE_FORMAT | typeof SEARCH_AI__RESPONSES | typeof SEARCH_AI__SCHEMA | typeof SEARCH_AI__SEARCH_QUERIES | typeof SEARCH_AI__SEARCH_RESULTS | typeof SEARCH_AI__SEED | typeof SEARCH_AI__STREAMING | typeof SEARCH_AI__TAGS | typeof SEARCH_AI__TEMPERATURE | typeof SEARCH_AI__TEXTS | typeof SEARCH_AI__TOOLCALL__ARGS | typeof SEARCH_AI__TOOLCALL__RESULT | typeof SEARCH_AI__TOOL_CALLS | typeof SEARCH_AI__TOOLS | typeof SEARCH_AI__TOP_K | typeof SEARCH_AI__TOP_P | typeof SEARCH_AI__TOTAL_COST | typeof SEARCH_AI__TOTAL_TOKENS__USED | typeof SEARCH_AI__USAGE__TOKENS | typeof SEARCH_AI__VALUES | typeof SEARCH_AI__WARNINGS | typeof SEARCH_ANGULAR__VERSION | typeof SEARCH_APP__APP_BUILD | typeof SEARCH_APP__APP_IDENTIFIER | typeof SEARCH_APP__APP_NAME | typeof SEARCH_APP__APP_START_TIME | typeof SEARCH_APP__APP_VERSION | typeof SEARCH_APP__BUILD | typeof SEARCH_APP__IDENTIFIER | typeof SEARCH_APP__IN_FOREGROUND | typeof SEARCH_APP__NAME | typeof SEARCH_APP__START_TIME | typeof SEARCH_APP__VERSION | typeof SEARCH_APP__VITALS__FRAMES__DELAY__VALUE | typeof SEARCH_APP__VITALS__FRAMES__FROZEN__COUNT | typeof SEARCH_APP__VITALS__FRAMES__FROZEN__RATE | typeof SEARCH_APP__VITALS__FRAMES__SLOW__COUNT | typeof SEARCH_APP__VITALS__FRAMES__SLOW__RATE | typeof SEARCH_APP__VITALS__FRAMES__TOTAL__COUNT | typeof SEARCH_APP__VITALS__STALL__DURATION | typeof SEARCH_APP__VITALS__STALL__PERCENTAGE | typeof SEARCH_APP__VITALS__START__COLD__VALUE | typeof SEARCH_APP__VITALS__START__PREWARMED | typeof SEARCH_APP__VITALS__START__REASON | typeof SEARCH_APP__VITALS__START__SCREEN | typeof SEARCH_APP__VITALS__START__TYPE | typeof SEARCH_APP__VITALS__START__WARM__VALUE | typeof SEARCH_APP__VITALS__TTFD__VALUE | typeof SEARCH_APP__VITALS__TTID__VALUE | typeof SEARCH_APP_START_COLD | typeof SEARCH_APP_START_TYPE | typeof SEARCH_APP_START_WARM | typeof SEARCH_ART__GC__BLOCKING_COUNT | typeof SEARCH_ART__GC__BLOCKING_TIME | typeof SEARCH_ART__GC__PRE_OOME_COUNT | typeof SEARCH_ART__GC__TOTAL_COUNT | typeof SEARCH_ART__GC__TOTAL_TIME | typeof SEARCH_ART__GC__WAITING_TIME | typeof SEARCH_ART__MEMORY__FREE | typeof SEARCH_ART__MEMORY__FREE_UNTIL_GC | typeof SEARCH_ART__MEMORY__FREE_UNTIL_OOME | typeof SEARCH_ART__MEMORY__MAX | typeof SEARCH_ART__MEMORY__TOTAL | typeof SEARCH_AWS__CLOUDWATCH__LOGS__LOG_GROUP | typeof SEARCH_AWS__CLOUDWATCH__LOGS__LOG_STREAM | typeof SEARCH_AWS__CLOUDWATCH__LOGS__URL | typeof SEARCH_AWS__DYNAMODB__ATTRIBUTE_DEFINITIONS | typeof SEARCH_AWS__DYNAMODB__CONSISTENT_READ | typeof SEARCH_AWS__DYNAMODB__CONSUMED_CAPACITY | typeof SEARCH_AWS__DYNAMODB__COUNT | typeof SEARCH_AWS__DYNAMODB__EXCLUSIVE_START_TABLE | typeof SEARCH_AWS__DYNAMODB__GLOBAL_SECONDARY_INDEX_UPDATES | typeof SEARCH_AWS__DYNAMODB__GLOBAL_SECONDARY_INDEXES | typeof SEARCH_AWS__DYNAMODB__INDEX_NAME | typeof SEARCH_AWS__DYNAMODB__ITEM_COLLECTION_METRICS | typeof SEARCH_AWS__DYNAMODB__LIMIT | typeof SEARCH_AWS__DYNAMODB__LOCAL_SECONDARY_INDEXES | typeof SEARCH_AWS__DYNAMODB__PROJECTION | typeof SEARCH_AWS__DYNAMODB__PROVISIONED_READ_CAPACITY | typeof SEARCH_AWS__DYNAMODB__PROVISIONED_WRITE_CAPACITY | typeof SEARCH_AWS__DYNAMODB__SCAN_FORWARD | typeof SEARCH_AWS__DYNAMODB__SCANNED_COUNT | typeof SEARCH_AWS__DYNAMODB__SEGMENT | typeof SEARCH_AWS__DYNAMODB__SELECT | typeof SEARCH_AWS__DYNAMODB__TABLE_COUNT | typeof SEARCH_AWS__DYNAMODB__TABLE_NAMES | typeof SEARCH_AWS__DYNAMODB__TOTAL_SEGMENTS | typeof SEARCH_AWS__EXTENDED_REQUEST_ID | typeof SEARCH_AWS__KINESIS__STREAM__NAME | typeof SEARCH_AWS__KINESIS__STREAM_NAME | typeof SEARCH_AWS__LAMBDA__AWS_REQUEST_ID | typeof SEARCH_AWS__LAMBDA__EXECUTION_DURATION_IN_MILLIS | typeof SEARCH_AWS__LAMBDA__FUNCTION_NAME | typeof SEARCH_AWS__LAMBDA__FUNCTION_VERSION | typeof SEARCH_AWS__LAMBDA__INVOKED_ARN | typeof SEARCH_AWS__LAMBDA__INVOKED_FUNCTION_ARN | typeof SEARCH_AWS__LAMBDA__REMAINING_TIME_IN_MILLIS | typeof SEARCH_AWS__LOG__GROUP__NAMES | typeof SEARCH_AWS__LOG__STREAM__NAMES | typeof SEARCH_AWS__OPERATION_NAME | typeof SEARCH_AWS__REQUEST__EXTENDED_ID | typeof SEARCH_AWS__REQUEST__ID | typeof SEARCH_AWS__REQUEST__URL | typeof SEARCH_AWS__REQUEST_ID | typeof SEARCH_AWS__S3__BUCKET | typeof SEARCH_AWS__SECRETSMANAGER__SECRET__ARN | typeof SEARCH_AWS__SNS__TOPIC__ARN | typeof SEARCH_AWS__STEP_FUNCTIONS__ACTIVITY__ARN | typeof SEARCH_AWS__STEP_FUNCTIONS__STATE_MACHINE__ARN | typeof SEARCH_AWS_REGION | typeof SEARCH_BLOCKED_MAIN_THREAD | typeof SEARCH_BROWSER__BFCACHE__FRAME | typeof SEARCH_BROWSER__BFCACHE__NOT_RESTORED_REASON_COUNT | typeof SEARCH_BROWSER__BFCACHE__OUTCOME | typeof SEARCH_BROWSER__BFCACHE__REASON | typeof SEARCH_BROWSER__NAME | typeof SEARCH_BROWSER__NAVIGATION__ID | typeof SEARCH_BROWSER__NAVIGATION__TYPE | typeof SEARCH_BROWSER__PAINT__TYPE | typeof SEARCH_BROWSER__PERFORMANCE__NAVIGATION__ACTIVATION_START | typeof SEARCH_BROWSER__PERFORMANCE__TIME_ORIGIN | typeof SEARCH_BROWSER__REPORT__TYPE | typeof SEARCH_BROWSER__SCRIPT__INVOKER | typeof SEARCH_BROWSER__SCRIPT__INVOKER_TYPE | typeof SEARCH_BROWSER__SCRIPT__SOURCE_CHAR_POSITION | typeof SEARCH_BROWSER__VERSION | typeof SEARCH_BROWSER__WEB_VITAL__CLS__REPORT_EVENT | typeof SEARCH_BROWSER__WEB_VITAL__CLS__SOURCE__KEY | typeof SEARCH_BROWSER__WEB_VITAL__CLS__VALUE | typeof SEARCH_BROWSER__WEB_VITAL__FCP__VALUE | typeof SEARCH_BROWSER__WEB_VITAL__FP__VALUE | typeof SEARCH_BROWSER__WEB_VITAL__INP__VALUE | typeof SEARCH_BROWSER__WEB_VITAL__LCP__ELEMENT | typeof SEARCH_BROWSER__WEB_VITAL__LCP__ID | typeof SEARCH_BROWSER__WEB_VITAL__LCP__LOAD_TIME | typeof SEARCH_BROWSER__WEB_VITAL__LCP__RENDER_TIME | typeof SEARCH_BROWSER__WEB_VITAL__LCP__REPORT_EVENT | typeof SEARCH_BROWSER__WEB_VITAL__LCP__SIZE | typeof SEARCH_BROWSER__WEB_VITAL__LCP__URL | typeof SEARCH_BROWSER__WEB_VITAL__LCP__VALUE | typeof SEARCH_BROWSER__WEB_VITAL__TTFB__REQUEST_TIME | typeof SEARCH_BROWSER__WEB_VITAL__TTFB__VALUE | typeof SEARCH_CACHE__HIT | typeof SEARCH_CACHE__ITEM_AGE | typeof SEARCH_CACHE__ITEM_SIZE | typeof SEARCH_CACHE__KEY | typeof SEARCH_CACHE__OPERATION | typeof SEARCH_CACHE__TAGS | typeof SEARCH_CACHE__TTL | typeof SEARCH_CACHE__WRITE | typeof SEARCH_CHANNEL | typeof SEARCH_CLIENT__ADDRESS | typeof SEARCH_CLIENT__PORT | typeof SEARCH_CLIENT_SAMPLE_RATE | typeof SEARCH_CLOUD__ACCOUNT__ID | typeof SEARCH_CLOUD__AVAILABILITY_ZONE | typeof SEARCH_CLOUD__PLATFORM | typeof SEARCH_CLOUD__PROVIDER | typeof SEARCH_CLOUD__REGION | typeof SEARCH_CLOUD__RESOURCE_ID | typeof SEARCH_CLOUDFLARE__D1__DURATION | typeof SEARCH_CLOUDFLARE__D1__QUERY_TYPE | typeof SEARCH_CLOUDFLARE__D1__ROWS_READ | typeof SEARCH_CLOUDFLARE__D1__ROWS_WRITTEN | typeof SEARCH_CLOUDFLARE__DURABLE_OBJECT__QUERY__BINDINGS | typeof SEARCH_CLOUDFLARE__DURABLE_OBJECT__RESPONSE__ROWS_READ | typeof SEARCH_CLOUDFLARE__DURABLE_OBJECT__RESPONSE__ROWS_WRITTEN | typeof SEARCH_CLOUDFLARE__R2__BUCKET | typeof SEARCH_CLOUDFLARE__R2__OPERATION | typeof SEARCH_CLOUDFLARE__R2__REQUEST__DELIMITER | typeof SEARCH_CLOUDFLARE__R2__REQUEST__KEY | typeof SEARCH_CLOUDFLARE__R2__REQUEST__PART_NUMBER | typeof SEARCH_CLOUDFLARE__R2__REQUEST__PREFIX | typeof SEARCH_CLOUDFLARE__WORKFLOW__ATTEMPT | typeof SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__BACKOFF | typeof SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__DELAY | typeof SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__LIMIT | typeof SEARCH_CLOUDFLARE__WORKFLOW__TIMEOUT | typeof SEARCH_CLS | typeof SEARCH_CLS__SOURCE__KEY | typeof SEARCH_CODE | typeof SEARCH_CODE__FILE__PATH | typeof SEARCH_CODE__FILEPATH | typeof SEARCH_CODE__FUNCTION | typeof SEARCH_CODE__FUNCTION__NAME | typeof SEARCH_CODE__LINE__NUMBER | typeof SEARCH_CODE__LINENO | typeof SEARCH_CODE__NAMESPACE | typeof SEARCH_CONNECTION__RTT | typeof SEARCH_CONNECTIONTYPE | typeof SEARCH_CULTURE__CALENDAR | typeof SEARCH_CULTURE__DISPLAY_NAME | typeof SEARCH_CULTURE__IS_24_HOUR_FORMAT | typeof SEARCH_CULTURE__LOCALE | typeof SEARCH_CULTURE__TIMEZONE | typeof SEARCH_DB__COLLECTION__NAME | typeof SEARCH_DB__CONNECTION_STRING | typeof SEARCH_DB__DRIVER__NAME | typeof SEARCH_DB__MONGODB__COLLECTION | typeof SEARCH_DB__NAME | typeof SEARCH_DB__NAMESPACE | typeof SEARCH_DB__OPERATION | typeof SEARCH_DB__OPERATION__BATCH__SIZE | typeof SEARCH_DB__OPERATION__NAME | typeof SEARCH_DB__PARAMS | typeof SEARCH_DB__QUERY__PARAMETER__KEY | typeof SEARCH_DB__QUERY__SUMMARY | typeof SEARCH_DB__QUERY__TEXT | typeof SEARCH_DB__REDIS__CONNECTION | typeof SEARCH_DB__REDIS__KEY | typeof SEARCH_DB__REDIS__PARAMETERS | typeof SEARCH_DB__RESPONSE__STATUS_CODE | typeof SEARCH_DB__SQL__BINDINGS | typeof SEARCH_DB__STATEMENT | typeof SEARCH_DB__STORED_PROCEDURE__NAME | typeof SEARCH_DB__SYSTEM | typeof SEARCH_DB__SYSTEM__NAME | typeof SEARCH_DB__USER | typeof SEARCH_DEVICE__ARCHS | typeof SEARCH_DEVICE__BATTERY_LEVEL | typeof SEARCH_DEVICE__BATTERY_TEMPERATURE | typeof SEARCH_DEVICE__BOOT_TIME | typeof SEARCH_DEVICE__BRAND | typeof SEARCH_DEVICE__CHARGING | typeof SEARCH_DEVICE__CHIPSET | typeof SEARCH_DEVICE__CLASS | typeof SEARCH_DEVICE__CONNECTION_TYPE | typeof SEARCH_DEVICE__CPU_DESCRIPTION | typeof SEARCH_DEVICE__EXTERNAL_FREE_STORAGE | typeof SEARCH_DEVICE__EXTERNAL_STORAGE_SIZE | typeof SEARCH_DEVICE__FAMILY | typeof SEARCH_DEVICE__FREE_MEMORY | typeof SEARCH_DEVICE__FREE_STORAGE | typeof SEARCH_DEVICE__ID | typeof SEARCH_DEVICE__LOCALE | typeof SEARCH_DEVICE__LOW_MEMORY | typeof SEARCH_DEVICE__LOW_POWER_MODE | typeof SEARCH_DEVICE__MANUFACTURER | typeof SEARCH_DEVICE__MEMORY__ESTIMATED_CAPACITY | typeof SEARCH_DEVICE__MEMORY_SIZE | typeof SEARCH_DEVICE__MODEL | typeof SEARCH_DEVICE__MODEL_ID | typeof SEARCH_DEVICE__NAME | typeof SEARCH_DEVICE__ONLINE | typeof SEARCH_DEVICE__ORIENTATION | typeof SEARCH_DEVICE__PROCESSOR_COUNT | typeof SEARCH_DEVICE__PROCESSOR_FREQUENCY | typeof SEARCH_DEVICE__SCREEN_DENSITY | typeof SEARCH_DEVICE__SCREEN_DPI | typeof SEARCH_DEVICE__SCREEN_HEIGHT_PIXELS | typeof SEARCH_DEVICE__SCREEN_WIDTH_PIXELS | typeof SEARCH_DEVICE__SIMULATOR | typeof SEARCH_DEVICE__STORAGE_SIZE | typeof SEARCH_DEVICE__THERMAL_STATE | typeof SEARCH_DEVICE__TIMEZONE | typeof SEARCH_DEVICE__USABLE_MEMORY | typeof SEARCH_DEVICEMEMORY | typeof SEARCH_DIST | typeof SEARCH_DJANGO__FUNCTION_NAME | typeof SEARCH_DJANGO__MIDDLEWARE_NAME | typeof SEARCH_EFFECTIVECONNECTIONTYPE | typeof SEARCH_ENVIRONMENT | typeof SEARCH_ERROR__TYPE | typeof SEARCH_EVENT__ID | typeof SEARCH_EVENT__NAME | typeof SEARCH_EXCEPTION__ESCAPED | typeof SEARCH_EXCEPTION__MESSAGE | typeof SEARCH_EXCEPTION__STACKTRACE | typeof SEARCH_EXCEPTION__TYPE | typeof SEARCH_FAAS__COLDSTART | typeof SEARCH_FAAS__CRON | typeof SEARCH_FAAS__DURATION_IN_MS | typeof SEARCH_FAAS__ENTRY_POINT | typeof SEARCH_FAAS__EXECUTION | typeof SEARCH_FAAS__ID | typeof SEARCH_FAAS__IDENTITY | typeof SEARCH_FAAS__INVOCATION_ID | typeof SEARCH_FAAS__INVOKED_NAME | typeof SEARCH_FAAS__INVOKED_PROVIDER | typeof SEARCH_FAAS__INVOKED_REGION | typeof SEARCH_FAAS__NAME | typeof SEARCH_FAAS__TIME | typeof SEARCH_FAAS__TRIGGER | typeof SEARCH_FAAS__VERSION | typeof SEARCH_FCP | typeof SEARCH_FILE__PATH | typeof SEARCH_FILE__SIZE | typeof SEARCH_FLAG__EVALUATION__KEY | typeof SEARCH_FP | typeof SEARCH_FRAMES__DELAY | typeof SEARCH_FRAMES__FROZEN | typeof SEARCH_FRAMES__SLOW | typeof SEARCH_FRAMES__TOTAL | typeof SEARCH_FRAMES_FROZEN_RATE | typeof SEARCH_FRAMES_SLOW_RATE | typeof SEARCH_FS_ERROR | typeof SEARCH_GCP__FUNCTION__CONTEXT__EVENT_ID | typeof SEARCH_GCP__FUNCTION__CONTEXT__EVENT_TYPE | typeof SEARCH_GCP__FUNCTION__CONTEXT__ID | typeof SEARCH_GCP__FUNCTION__CONTEXT__RESOURCE | typeof SEARCH_GCP__FUNCTION__CONTEXT__SOURCE | typeof SEARCH_GCP__FUNCTION__CONTEXT__SPECVERSION | typeof SEARCH_GCP__FUNCTION__CONTEXT__TIME | typeof SEARCH_GCP__FUNCTION__CONTEXT__TIMESTAMP | typeof SEARCH_GCP__FUNCTION__CONTEXT__TYPE | typeof SEARCH_GCP__PROJECT__ID | typeof SEARCH_GCP_REGION | typeof SEARCH_GEN_AI__AGENT__NAME | typeof SEARCH_GEN_AI__CONTEXT__UTILIZATION | typeof SEARCH_GEN_AI__CONTEXT__WINDOW_SIZE | typeof SEARCH_GEN_AI__CONVERSATION__ID | typeof SEARCH_GEN_AI__COST__CACHE_CREATION__INPUT_TOKENS | typeof SEARCH_GEN_AI__COST__CACHE_READ__INPUT_TOKENS | typeof SEARCH_GEN_AI__COST__INPUT_TOKENS | typeof SEARCH_GEN_AI__COST__OUTPUT_TOKENS | typeof SEARCH_GEN_AI__COST__REASONING__OUTPUT_TOKENS | typeof SEARCH_GEN_AI__COST__TOTAL_TOKENS | typeof SEARCH_GEN_AI__EMBEDDINGS__INPUT | typeof SEARCH_GEN_AI__FUNCTION_ID | typeof SEARCH_GEN_AI__INPUT__MESSAGES | typeof SEARCH_GEN_AI__OPERATION__NAME | typeof SEARCH_GEN_AI__OPERATION__TYPE | typeof SEARCH_GEN_AI__OUTPUT__MESSAGES | typeof SEARCH_GEN_AI__PIPELINE__NAME | typeof SEARCH_GEN_AI__PROMPT | typeof SEARCH_GEN_AI__PROMPT__NAME | typeof SEARCH_GEN_AI__PROVIDER__NAME | typeof SEARCH_GEN_AI__REQUEST__AVAILABLE_TOOLS | typeof SEARCH_GEN_AI__REQUEST__FREQUENCY_PENALTY | typeof SEARCH_GEN_AI__REQUEST__MAX_TOKENS | typeof SEARCH_GEN_AI__REQUEST__MESSAGES | typeof SEARCH_GEN_AI__REQUEST__MODEL | typeof SEARCH_GEN_AI__REQUEST__PRESENCE_PENALTY | typeof SEARCH_GEN_AI__REQUEST__REASONING__LEVEL | typeof SEARCH_GEN_AI__REQUEST__SCHEMA | typeof SEARCH_GEN_AI__REQUEST__SEED | typeof SEARCH_GEN_AI__REQUEST__STOP_SEQUENCES | typeof SEARCH_GEN_AI__REQUEST__TEMPERATURE | typeof SEARCH_GEN_AI__REQUEST__TOP_K | typeof SEARCH_GEN_AI__REQUEST__TOP_P | typeof SEARCH_GEN_AI__RESPONSE__FINISH_REASON | typeof SEARCH_GEN_AI__RESPONSE__FINISH_REASONS | typeof SEARCH_GEN_AI__RESPONSE__ID | typeof SEARCH_GEN_AI__RESPONSE__MODEL | typeof SEARCH_GEN_AI__RESPONSE__OBJECT | typeof SEARCH_GEN_AI__RESPONSE__STREAMING | typeof SEARCH_GEN_AI__RESPONSE__TEXT | typeof SEARCH_GEN_AI__RESPONSE__TIME_TO_FIRST_CHUNK | typeof SEARCH_GEN_AI__RESPONSE__TIME_TO_FIRST_TOKEN | typeof SEARCH_GEN_AI__RESPONSE__TOKENS_PER_SECOND | typeof SEARCH_GEN_AI__RESPONSE__TOOL_CALLS | typeof SEARCH_GEN_AI__SYSTEM | typeof SEARCH_GEN_AI__SYSTEM__MESSAGE | typeof SEARCH_GEN_AI__SYSTEM_INSTRUCTIONS | typeof SEARCH_GEN_AI__TOOL__CALL__ARGUMENTS | typeof SEARCH_GEN_AI__TOOL__CALL__RESULT | typeof SEARCH_GEN_AI__TOOL__DEFINITIONS | typeof SEARCH_GEN_AI__TOOL__DESCRIPTION | typeof SEARCH_GEN_AI__TOOL__INPUT | typeof SEARCH_GEN_AI__TOOL__MESSAGE | typeof SEARCH_GEN_AI__TOOL__NAME | typeof SEARCH_GEN_AI__TOOL__OUTPUT | typeof SEARCH_GEN_AI__TOOL__TYPE | typeof SEARCH_GEN_AI__USAGE__CACHE_CREATION__INPUT_TOKENS | typeof SEARCH_GEN_AI__USAGE__CACHE_READ__INPUT_TOKENS | typeof SEARCH_GEN_AI__USAGE__COMPLETION_TOKENS | typeof SEARCH_GEN_AI__USAGE__INPUT_TOKENS | typeof SEARCH_GEN_AI__USAGE__INPUT_TOKENS__CACHE_WRITE | typeof SEARCH_GEN_AI__USAGE__INPUT_TOKENS__CACHED | typeof SEARCH_GEN_AI__USAGE__OUTPUT_TOKENS | typeof SEARCH_GEN_AI__USAGE__OUTPUT_TOKENS__REASONING | typeof SEARCH_GEN_AI__USAGE__PROMPT_TOKENS | typeof SEARCH_GEN_AI__USAGE__REASONING__OUTPUT_TOKENS | typeof SEARCH_GEN_AI__USAGE__TOTAL_TOKENS | typeof SEARCH_GRAPHQL__DOCUMENT | typeof SEARCH_GRAPHQL__OPERATION__NAME | typeof SEARCH_GRAPHQL__OPERATION__TYPE | typeof SEARCH_GRAPHQL__PROCESSING__TYPE | typeof SEARCH_GRAPHQL__SOURCE | typeof SEARCH_GRPC__ERROR__BAD_REQUEST__FIELD_VIOLATIONS | typeof SEARCH_GRPC__ERROR__DEBUG_INFO__DETAIL | typeof SEARCH_GRPC__ERROR__DEBUG_INFO__STACK_ENTRIES | typeof SEARCH_GRPC__ERROR__ERROR_INFO__DOMAIN | typeof SEARCH_GRPC__ERROR__ERROR_INFO__METADATA__KEY | typeof SEARCH_GRPC__ERROR__ERROR_INFO__REASON | typeof SEARCH_GRPC__ERROR__PRECONDITION_FAILURE__VIOLATIONS | typeof SEARCH_GRPC__ERROR__QUOTA_FAILURE__VIOLATIONS | typeof SEARCH_GRPC__ERROR__RESOURCE_INFO__DESCRIPTION | typeof SEARCH_GRPC__ERROR__RESOURCE_INFO__OWNER | typeof SEARCH_GRPC__ERROR__RESOURCE_INFO__RESOURCE_NAME | typeof SEARCH_GRPC__ERROR__RESOURCE_INFO__RESOURCE_TYPE | typeof SEARCH_GRPC__ERROR__RETRY_INFO__RETRY_DELAY_MS | typeof SEARCH_HARDWARECONCURRENCY | typeof SEARCH_HTTP__CLIENT_IP | typeof SEARCH_HTTP__DECODED_RESPONSE_CONTENT_LENGTH | typeof SEARCH_HTTP__FLAVOR | typeof SEARCH_HTTP__FRAGMENT | typeof SEARCH_HTTP__HOST | typeof SEARCH_HTTP__METHOD | typeof SEARCH_HTTP__QUERY | typeof SEARCH_HTTP__REQUEST__BODY__DATA | typeof SEARCH_HTTP__REQUEST__BODY__DECODED_SIZE | typeof SEARCH_HTTP__REQUEST__BODY__SIZE | typeof SEARCH_HTTP__REQUEST__CONNECT_START | typeof SEARCH_HTTP__REQUEST__CONNECTION_END | typeof SEARCH_HTTP__REQUEST__DOMAIN_LOOKUP_END | typeof SEARCH_HTTP__REQUEST__DOMAIN_LOOKUP_START | typeof SEARCH_HTTP__REQUEST__FETCH_START | typeof SEARCH_HTTP__REQUEST__HEADER__KEY | typeof SEARCH_HTTP__REQUEST__METHOD | typeof SEARCH_HTTP__REQUEST__REDIRECT_END | typeof SEARCH_HTTP__REQUEST__REDIRECT_START | typeof SEARCH_HTTP__REQUEST__REQUEST_START | typeof SEARCH_HTTP__REQUEST__RESEND_COUNT | typeof SEARCH_HTTP__REQUEST__RESPONSE_END | typeof SEARCH_HTTP__REQUEST__RESPONSE_START | typeof SEARCH_HTTP__REQUEST__SAME_ORIGIN | typeof SEARCH_HTTP__REQUEST__SECURE_CONNECTION_START | typeof SEARCH_HTTP__REQUEST__TIME_TO_FIRST_BYTE | typeof SEARCH_HTTP__REQUEST__WORKER_START | typeof SEARCH_HTTP__REQUEST_CONTENT_LENGTH | typeof SEARCH_HTTP__REQUEST_CONTENT_LENGTH_UNCOMPRESSED | typeof SEARCH_HTTP__REQUEST_METHOD | typeof SEARCH_HTTP__RESPONSE__BODY__DECODED_SIZE | typeof SEARCH_HTTP__RESPONSE__BODY__SIZE | typeof SEARCH_HTTP__RESPONSE__HEADER__KEY | typeof SEARCH_HTTP__RESPONSE__HEADER__CONTENT_LENGTH | typeof SEARCH_HTTP__RESPONSE__SIZE | typeof SEARCH_HTTP__RESPONSE__STATUS_CODE | typeof SEARCH_HTTP__RESPONSE__STATUS_TEXT | typeof SEARCH_HTTP__RESPONSE_CONTENT_LENGTH | typeof SEARCH_HTTP__RESPONSE_CONTENT_LENGTH_UNCOMPRESSED | typeof SEARCH_HTTP__RESPONSE_STATUS_CODE | typeof SEARCH_HTTP__RESPONSE_TRANSFER_SIZE | typeof SEARCH_HTTP__ROUTE | typeof SEARCH_HTTP__SCHEME | typeof SEARCH_HTTP__SERVER__REQUEST__TIME_IN_QUEUE | typeof SEARCH_HTTP__SERVER_NAME | typeof SEARCH_HTTP__STATUS_CODE | typeof SEARCH_HTTP__STATUS_TEXT | typeof SEARCH_HTTP__TARGET | typeof SEARCH_HTTP__URL | typeof SEARCH_HTTP__USER_AGENT | typeof SEARCH_ID | typeof SEARCH_INP | typeof SEARCH_JSONRPC__PROTOCOL__VERSION | typeof SEARCH_JSONRPC__REQUEST__ID | typeof SEARCH_JVM__GC__ACTION | typeof SEARCH_JVM__GC__NAME | typeof SEARCH_JVM__MEMORY__POOL__NAME | typeof SEARCH_JVM__MEMORY__TYPE | typeof SEARCH_JVM__THREAD__DAEMON | typeof SEARCH_JVM__THREAD__STATE | typeof SEARCH_KOA__NAME | typeof SEARCH_KOA__TYPE | typeof SEARCH_LANGCHAIN__CHAIN__NAME | typeof SEARCH_LCP | typeof SEARCH_LCP__ELEMENT | typeof SEARCH_LCP__ID | typeof SEARCH_LCP__LOADTIME | typeof SEARCH_LCP__RENDERTIME | typeof SEARCH_LCP__SIZE | typeof SEARCH_LCP__URL | typeof SEARCH_LITESTAR__MIDDLEWARE_NAME | typeof SEARCH_LOGGER__NAME | typeof SEARCH_MCP__CANCELLED__REASON | typeof SEARCH_MCP__CANCELLED__REQUEST_ID | typeof SEARCH_MCP__CLIENT__NAME | typeof SEARCH_MCP__CLIENT__TITLE | typeof SEARCH_MCP__CLIENT__VERSION | typeof SEARCH_MCP__LIFECYCLE__PHASE | typeof SEARCH_MCP__LOGGING__DATA_TYPE | typeof SEARCH_MCP__LOGGING__LEVEL | typeof SEARCH_MCP__LOGGING__LOGGER | typeof SEARCH_MCP__LOGGING__MESSAGE | typeof SEARCH_MCP__METHOD__NAME | typeof SEARCH_MCP__PROGRESS__CURRENT | typeof SEARCH_MCP__PROGRESS__MESSAGE | typeof SEARCH_MCP__PROGRESS__PERCENTAGE | typeof SEARCH_MCP__PROGRESS__TOKEN | typeof SEARCH_MCP__PROGRESS__TOTAL | typeof SEARCH_MCP__PROMPT__NAME | typeof SEARCH_MCP__PROMPT__RESULT__DESCRIPTION | typeof SEARCH_MCP__PROMPT__RESULT__MESSAGE_CONTENT | typeof SEARCH_MCP__PROMPT__RESULT__MESSAGE_COUNT | typeof SEARCH_MCP__PROMPT__RESULT__MESSAGE_ROLE | typeof SEARCH_MCP__PROTOCOL__READY | typeof SEARCH_MCP__PROTOCOL__VERSION | typeof SEARCH_MCP__REQUEST__ARGUMENT__KEY | typeof SEARCH_MCP__REQUEST__ARGUMENT__NAME | typeof SEARCH_MCP__REQUEST__ARGUMENT__URI | typeof SEARCH_MCP__REQUEST__ID | typeof SEARCH_MCP__RESOURCE__PROTOCOL | typeof SEARCH_MCP__RESOURCE__URI | typeof SEARCH_MCP__SERVER__NAME | typeof SEARCH_MCP__SERVER__TITLE | typeof SEARCH_MCP__SERVER__VERSION | typeof SEARCH_MCP__SESSION__ID | typeof SEARCH_MCP__TOOL__NAME | typeof SEARCH_MCP__TOOL__RESULT__CONTENT | typeof SEARCH_MCP__TOOL__RESULT__CONTENT_COUNT | typeof SEARCH_MCP__TOOL__RESULT__IS_ERROR | typeof SEARCH_MCP__TRANSPORT | typeof SEARCH_MDC__KEY | typeof SEARCH_MESSAGING__BATCH__MESSAGE_COUNT | typeof SEARCH_MESSAGING__CONVERSATION_ID | typeof SEARCH_MESSAGING__DESTINATION | typeof SEARCH_MESSAGING__DESTINATION__CONNECTION | typeof SEARCH_MESSAGING__DESTINATION__NAME | typeof SEARCH_MESSAGING__DESTINATION__PARTITION__ID | typeof SEARCH_MESSAGING__DESTINATION_KIND | typeof SEARCH_MESSAGING__KAFKA__MESSAGE__KEY | typeof SEARCH_MESSAGING__KAFKA__MESSAGE__TOMBSTONE | typeof SEARCH_MESSAGING__KAFKA__OFFSET | typeof SEARCH_MESSAGING__MESSAGE__BODY__SIZE | typeof SEARCH_MESSAGING__MESSAGE__CONVERSATION_ID | typeof SEARCH_MESSAGING__MESSAGE__ENVELOPE__SIZE | typeof SEARCH_MESSAGING__MESSAGE__ID | typeof SEARCH_MESSAGING__MESSAGE__RECEIVE__LATENCY | typeof SEARCH_MESSAGING__MESSAGE__RETRY__COUNT | typeof SEARCH_MESSAGING__MESSAGE_ID | typeof SEARCH_MESSAGING__OPERATION | typeof SEARCH_MESSAGING__OPERATION__NAME | typeof SEARCH_MESSAGING__OPERATION__TYPE | typeof SEARCH_MESSAGING__PROTOCOL | typeof SEARCH_MESSAGING__PROTOCOL_VERSION | typeof SEARCH_MESSAGING__RABBITMQ__DESTINATION__ROUTING_KEY | typeof SEARCH_MESSAGING__RABBITMQ__ROUTING_KEY | typeof SEARCH_MESSAGING__SYSTEM | typeof SEARCH_MESSAGING__URL | typeof SEARCH_METHOD | typeof SEARCH_MIDDLEWARE__NAME | typeof SEARCH_MOBILE__FRAMES_DELAY | typeof SEARCH_MOBILE__FROZEN_FRAMES | typeof SEARCH_MOBILE__SLOW_FRAMES | typeof SEARCH_MOBILE__TOTAL_FRAMES | typeof SEARCH_NAVIGATION__ORIGIN | typeof SEARCH_NAVIGATION__ROUTE__ID | typeof SEARCH_NAVIGATION__TYPE | typeof SEARCH_NEL__ELAPSED_TIME | typeof SEARCH_NEL__PHASE | typeof SEARCH_NEL__REFERRER | typeof SEARCH_NEL__SAMPLING_FUNCTION | typeof SEARCH_NEL__TYPE | typeof SEARCH_NET__HOST__IP | typeof SEARCH_NET__HOST__NAME | typeof SEARCH_NET__HOST__PORT | typeof SEARCH_NET__PEER__IP | typeof SEARCH_NET__PEER__NAME | typeof SEARCH_NET__PEER__PORT | typeof SEARCH_NET__PROTOCOL__NAME | typeof SEARCH_NET__PROTOCOL__VERSION | typeof SEARCH_NET__SOCK__FAMILY | typeof SEARCH_NET__SOCK__HOST__ADDR | typeof SEARCH_NET__SOCK__HOST__PORT | typeof SEARCH_NET__SOCK__PEER__ADDR | typeof SEARCH_NET__SOCK__PEER__NAME | typeof SEARCH_NET__SOCK__PEER__PORT | typeof SEARCH_NET__TRANSPORT | typeof SEARCH_NETWORK__CONNECTION__EFFECTIVE_TYPE | typeof SEARCH_NETWORK__CONNECTION__RTT | typeof SEARCH_NETWORK__CONNECTION__TYPE | typeof SEARCH_NETWORK__LOCAL__ADDRESS | typeof SEARCH_NETWORK__LOCAL__PORT | typeof SEARCH_NETWORK__PEER__ADDRESS | typeof SEARCH_NETWORK__PEER__PORT | typeof SEARCH_NETWORK__PROTOCOL__NAME | typeof SEARCH_NETWORK__PROTOCOL__VERSION | typeof SEARCH_NETWORK__TRANSPORT | typeof SEARCH_NETWORK__TYPE | typeof SEARCH_ORIGIN | typeof SEARCH_OS__BUILD | typeof SEARCH_OS__BUILD_ID | typeof SEARCH_OS__DESCRIPTION | typeof SEARCH_OS__KERNEL_VERSION | typeof SEARCH_OS__NAME | typeof SEARCH_OS__RAW_DESCRIPTION | typeof SEARCH_OS__ROOTED | typeof SEARCH_OS__THEME | typeof SEARCH_OS__TYPE | typeof SEARCH_OS__VERSION | typeof SEARCH_OTEL__KIND | typeof SEARCH_OTEL__SCOPE__NAME | typeof SEARCH_OTEL__SCOPE__VERSION | typeof SEARCH_OTEL__STATUS_CODE | typeof SEARCH_OTEL__STATUS_DESCRIPTION | typeof SEARCH_PARAMS__KEY | typeof SEARCH_PERFORMANCE__ACTIVATIONSTART | typeof SEARCH_PERFORMANCE__TIMEORIGIN | typeof SEARCH_PLATFORM | typeof SEARCH_PORT | typeof SEARCH_PREVIOUS_ROUTE | typeof SEARCH_PROCESS__COMMAND_ARGS | typeof SEARCH_PROCESS__EXECUTABLE__NAME | typeof SEARCH_PROCESS__PID | typeof SEARCH_PROCESS__RUNTIME__DESCRIPTION | typeof SEARCH_PROCESS__RUNTIME__ENGINE__NAME | typeof SEARCH_PROCESS__RUNTIME__ENGINE__VERSION | typeof SEARCH_PROCESS__RUNTIME__NAME | typeof SEARCH_PROCESS__RUNTIME__VERSION | typeof SEARCH_PROFILE__ID | typeof SEARCH_PROFILE_ID | typeof SEARCH_PROFILER__ID | typeof SEARCH_QUERY | typeof SEARCH_QUERY__KEY | typeof SEARCH_REACT__VERSION | typeof SEARCH_REDIS__COMMAND | typeof SEARCH_REDIS__KEY | typeof SEARCH_RELEASE | typeof SEARCH_REMIX__ACTION_FORM_DATA__KEY | typeof SEARCH_REPLAY__ID | typeof SEARCH_REPLAY_ID | typeof SEARCH_RESOURCE__DEPLOYMENT__ENVIRONMENT | typeof SEARCH_RESOURCE__DEPLOYMENT__ENVIRONMENT__NAME | typeof SEARCH_RESOURCE__RENDER_BLOCKING_STATUS | typeof SEARCH_ROUTE | typeof SEARCH_ROUTER__NAVIGATION__ORIGIN | typeof SEARCH_ROUTER__NAVIGATION__ROUTE__ID | typeof SEARCH_ROUTER__NAVIGATION__TYPE | typeof SEARCH_RPC__GRPC__STATUS_CODE | typeof SEARCH_RPC__METHOD | typeof SEARCH_RPC__RESPONSE__STATUS_CODE | typeof SEARCH_RPC__SERVICE | typeof SEARCH_RPC__SYSTEM | typeof SEARCH_RPC__SYSTEM__NAME | typeof SEARCH_RUNTIME__BUILD | typeof SEARCH_RUNTIME__NAME | typeof SEARCH_RUNTIME__RAW_DESCRIPTION | typeof SEARCH_RUNTIME__VERSION | typeof SEARCH_SCORE__KEY | typeof SEARCH_SCORE__RATIO__KEY | typeof SEARCH_SCORE__TOTAL | typeof SEARCH_SCORE__WEIGHT__KEY | typeof SEARCH_SDK__NAME | typeof SEARCH_SDK__VERSION | typeof SEARCH_SENTRY__ACTION | typeof SEARCH_SENTRY__BROWSER__VERSION | typeof SEARCH_SENTRY__CANCELLATION_REASON | typeof SEARCH_SENTRY__CATEGORY | typeof SEARCH_SENTRY__CLIENT_SAMPLE_RATE | typeof SEARCH_SENTRY__DESCRIPTION | typeof SEARCH_SENTRY__DIST | typeof SEARCH_SENTRY__DOMAIN | typeof SEARCH_SENTRY__DSC__ENVIRONMENT | typeof SEARCH_SENTRY__DSC__PROJECT_ID | typeof SEARCH_SENTRY__DSC__PUBLIC_KEY | typeof SEARCH_SENTRY__DSC__RELEASE | typeof SEARCH_SENTRY__DSC__SAMPLE_RATE | typeof SEARCH_SENTRY__DSC__SAMPLED | typeof SEARCH_SENTRY__DSC__TRACE_ID | typeof SEARCH_SENTRY__DSC__TRANSACTION | typeof SEARCH_SENTRY__ENVIRONMENT | typeof SEARCH_SENTRY__EVENT__SERIALIZED_BREADCRUMBS | typeof SEARCH_SENTRY__EVENT__SERIALIZED_CONTEXTS | typeof SEARCH_SENTRY__EVENT__SERIALIZED_EXTRA | typeof SEARCH_SENTRY__EVENT__SERIALIZED_META | typeof SEARCH_SENTRY__EXCLUSIVE_TIME | typeof SEARCH_SENTRY__FRAMES__FROZEN | typeof SEARCH_SENTRY__FRAMES__SLOW | typeof SEARCH_SENTRY__FRAMES__TOTAL | typeof SEARCH_SENTRY__GRAPHQL__OPERATION | typeof SEARCH_SENTRY__GROUP | typeof SEARCH_SENTRY__HTTP__PREFETCH | typeof SEARCH_SENTRY__IDLE_SPAN_FINISH_REASON | typeof SEARCH_SENTRY__IS_REMOTE | typeof SEARCH_SENTRY__KIND | typeof SEARCH_SENTRY__MAIN_THREAD | typeof SEARCH_SENTRY__MESSAGE__PARAMETER__KEY | typeof SEARCH_SENTRY__MESSAGE__TEMPLATE | typeof SEARCH_SENTRY__METRIC__SOURCE | typeof SEARCH_SENTRY__MOBILE | typeof SEARCH_SENTRY__MODULE__KEY | typeof SEARCH_SENTRY__NEXTJS__SSR__FUNCTION__ROUTE | typeof SEARCH_SENTRY__NEXTJS__SSR__FUNCTION__TYPE | typeof SEARCH_SENTRY__NORMALIZED_DB_QUERY | typeof SEARCH_SENTRY__NORMALIZED_DB_QUERY__HASH | typeof SEARCH_SENTRY__NORMALIZED_DESCRIPTION | typeof SEARCH_SENTRY__OBSERVED_TIMESTAMP_NANOS | typeof SEARCH_SENTRY__OP | typeof SEARCH_SENTRY__ORIGIN | typeof SEARCH_SENTRY__PAGELOAD__SPAN_ID | typeof SEARCH_SENTRY__PLATFORM | typeof SEARCH_SENTRY__PROFILE_ID | typeof SEARCH_SENTRY__PROFILER_ID | typeof SEARCH_SENTRY__RELAY__INGRESS | typeof SEARCH_SENTRY__RELAY__PIPELINE | typeof SEARCH_SENTRY__RELEASE | typeof SEARCH_SENTRY__REPLAY_ID | typeof SEARCH_SENTRY__REPLAY_IS_BUFFERING | typeof SEARCH_SENTRY__REPORT_EVENT | typeof SEARCH_SENTRY__SDK__INTEGRATIONS | typeof SEARCH_SENTRY__SDK__NAME | typeof SEARCH_SENTRY__SDK__VERSION | typeof SEARCH_SENTRY__SEGMENT__ID | typeof SEARCH_SENTRY__SEGMENT__NAME | typeof SEARCH_SENTRY__SEGMENT__NAME__SOURCE | typeof SEARCH_SENTRY__SEGMENT_ID | typeof SEARCH_SENTRY__SERVER_SAMPLE_RATE | typeof SEARCH_SENTRY__SOURCE | typeof SEARCH_SENTRY__SPAN__SOURCE | typeof SEARCH_SENTRY__STATUS | typeof SEARCH_SENTRY__STATUS__MESSAGE | typeof SEARCH_SENTRY__STATUS_CODE | typeof SEARCH_SENTRY__SVELTEKIT__NAVIGATION__FROM | typeof SEARCH_SENTRY__SVELTEKIT__NAVIGATION__TO | typeof SEARCH_SENTRY__SVELTEKIT__NAVIGATION__TYPE | typeof SEARCH_SENTRY__TIMESTAMP__SEQUENCE | typeof SEARCH_SENTRY__TRACE__PARENT_SPAN_ID | typeof SEARCH_SENTRY__TRACE__STATUS | typeof SEARCH_SENTRY__TRACE_LIFECYCLE | typeof SEARCH_SENTRY__TRANSACTION | typeof SEARCH_SENTRY__USER__IP | typeof SEARCH_SENTRY__USER__USERNAME | typeof SEARCH_SERVER__ADDRESS | typeof SEARCH_SERVER__PORT | typeof SEARCH_SERVER_NAME | typeof SEARCH_SERVER_SAMPLE_RATE | typeof SEARCH_SERVICE__NAME | typeof SEARCH_SERVICE__VERSION | typeof SEARCH_SESSION__ID | typeof SEARCH_SPAN__ACTION | typeof SEARCH_SPAN__CATEGORY | typeof SEARCH_SPAN__DOMAIN | typeof SEARCH_SPAN__GROUP | typeof SEARCH_SPAN__KIND | typeof SEARCH_SPAN__OP | typeof SEARCH_SPAN__STATUS | typeof SEARCH_SPAN__STATUS__MESSAGE | typeof SEARCH_SPAN__STATUS_CODE | typeof SEARCH_SPAN__SYSTEM | typeof SEARCH_STALL_PERCENTAGE | typeof SEARCH_STALL_TOTAL_TIME | typeof SEARCH_STARLETTE__MIDDLEWARE_NAME | typeof SEARCH_STARLITE__MIDDLEWARE_NAME | typeof SEARCH_STATE__TYPE | typeof SEARCH_SUBPROCESS__PID | typeof SEARCH_SVELTEKIT__LOAD__ENVIRONMENT | typeof SEARCH_SVELTEKIT__LOAD__NODE_ID | typeof SEARCH_SVELTEKIT__LOAD__NODE_TYPE | typeof SEARCH_SVELTEKIT__TRACING__ORIGINAL_NAME | typeof SEARCH_THREAD__ID | typeof SEARCH_THREAD__NAME | typeof SEARCH_TIMBER__TAG | typeof SEARCH_TIME_TO_FULL_DISPLAY | typeof SEARCH_TIME_TO_INITIAL_DISPLAY | typeof SEARCH_TRACE__STATUS | typeof SEARCH_TRACE_LIFECYCLE | typeof SEARCH_TRANSACTION | typeof SEARCH_TRANSACTION__SPAN_ID | typeof SEARCH_TRPC__PROCEDURE_PATH | typeof SEARCH_TRPC__PROCEDURE_TYPE | typeof SEARCH_TTFB | typeof SEARCH_TTFB__REQUESTTIME | typeof SEARCH_TYPE | typeof SEARCH_UI__COMPONENT_NAME | typeof SEARCH_UI__CONTRIBUTES_TO_TTFD | typeof SEARCH_UI__CONTRIBUTES_TO_TTID | typeof SEARCH_UI__ELEMENT__HEIGHT | typeof SEARCH_UI__ELEMENT__ID | typeof SEARCH_UI__ELEMENT__IDENTIFIER | typeof SEARCH_UI__ELEMENT__LOAD_TIME | typeof SEARCH_UI__ELEMENT__PAINT_TYPE | typeof SEARCH_UI__ELEMENT__RENDER_TIME | typeof SEARCH_UI__ELEMENT__TYPE | typeof SEARCH_UI__ELEMENT__URL | typeof SEARCH_UI__ELEMENT__WIDTH | typeof SEARCH_URL | typeof SEARCH_URL__DOMAIN | typeof SEARCH_URL__FRAGMENT | typeof SEARCH_URL__FULL | typeof SEARCH_URL__PATH | typeof SEARCH_URL__PATH__PARAMETER__KEY | typeof SEARCH_URL__PATH__PARAMS__KEY | typeof SEARCH_URL__PORT | typeof SEARCH_URL__QUERY | typeof SEARCH_URL__SAME_ORIGIN | typeof SEARCH_URL__SCHEME | typeof SEARCH_URL__TEMPLATE | typeof SEARCH_USER__EMAIL | typeof SEARCH_USER__FULL_NAME | typeof SEARCH_USER__GEO__CITY | typeof SEARCH_USER__GEO__COUNTRY_CODE | typeof SEARCH_USER__GEO__REGION | typeof SEARCH_USER__GEO__SUBDIVISION | typeof SEARCH_USER__HASH | typeof SEARCH_USER__ID | typeof SEARCH_USER__IP | typeof SEARCH_USER__IP_ADDRESS | typeof SEARCH_USER__NAME | typeof SEARCH_USER__ROLES | typeof SEARCH_USER__USERNAME | typeof SEARCH_USER_AGENT__ORIGINAL | typeof SEARCH_VERCEL__BRANCH | typeof SEARCH_VERCEL__BUILD_ID | typeof SEARCH_VERCEL__DEPLOYMENT_ID | typeof SEARCH_VERCEL__DESTINATION | typeof SEARCH_VERCEL__EDGE_TYPE | typeof SEARCH_VERCEL__ENTRYPOINT | typeof SEARCH_VERCEL__EXECUTION_REGION | typeof SEARCH_VERCEL__ID | typeof SEARCH_VERCEL__JA3_DIGEST | typeof SEARCH_VERCEL__JA4_DIGEST | typeof SEARCH_VERCEL__LOG_TYPE | typeof SEARCH_VERCEL__PATH | typeof SEARCH_VERCEL__PROJECT_ID | typeof SEARCH_VERCEL__PROJECT_NAME | typeof SEARCH_VERCEL__PROXY__CACHE_ID | typeof SEARCH_VERCEL__PROXY__CLIENT_IP | typeof SEARCH_VERCEL__PROXY__HOST | typeof SEARCH_VERCEL__PROXY__LAMBDA_REGION | typeof SEARCH_VERCEL__PROXY__METHOD | typeof SEARCH_VERCEL__PROXY__PATH | typeof SEARCH_VERCEL__PROXY__PATH_TYPE | typeof SEARCH_VERCEL__PROXY__PATH_TYPE_VARIANT | typeof SEARCH_VERCEL__PROXY__REFERER | typeof SEARCH_VERCEL__PROXY__REGION | typeof SEARCH_VERCEL__PROXY__RESPONSE_BYTE_SIZE | typeof SEARCH_VERCEL__PROXY__SCHEME | typeof SEARCH_VERCEL__PROXY__STATUS_CODE | typeof SEARCH_VERCEL__PROXY__TIMESTAMP | typeof SEARCH_VERCEL__PROXY__USER_AGENT | typeof SEARCH_VERCEL__PROXY__VERCEL_CACHE | typeof SEARCH_VERCEL__PROXY__VERCEL_ID | typeof SEARCH_VERCEL__PROXY__WAF_ACTION | typeof SEARCH_VERCEL__PROXY__WAF_RULE_ID | typeof SEARCH_VERCEL__REQUEST_ID | typeof SEARCH_VERCEL__SOURCE | typeof SEARCH_VERCEL__STATUS_CODE;
declare const ATTRIBUTE_SEARCH_METADATA: Record<string, AttributeSearchMetadata>;

export { ATTRIBUTE_SEARCH_METADATA, SEARCH_ADDRESS, SEARCH_AI__CITATIONS, SEARCH_AI__COMPLETION_TOKENS__USED, SEARCH_AI__DOCUMENTS, SEARCH_AI__FINISH_REASON, SEARCH_AI__FREQUENCY_PENALTY, SEARCH_AI__FUNCTION_CALL, SEARCH_AI__GENERATION_ID, SEARCH_AI__INPUT_MESSAGES, SEARCH_AI__IS_SEARCH_REQUIRED, SEARCH_AI__METADATA, SEARCH_AI__MODEL_ID, SEARCH_AI__MODEL__ID, SEARCH_AI__MODEL__PROVIDER, SEARCH_AI__PIPELINE__NAME, SEARCH_AI__PREAMBLE, SEARCH_AI__PRESENCE_PENALTY, SEARCH_AI__PROMPT, SEARCH_AI__PROMPT_TOKENS__USED, SEARCH_AI__PROMPT__MESSAGES, SEARCH_AI__PROMPT__TOOLS, SEARCH_AI__RAW_PROMPTING, SEARCH_AI__RESPONSES, SEARCH_AI__RESPONSE_FORMAT, SEARCH_AI__RESPONSE__ID, SEARCH_AI__RESPONSE__MODEL, SEARCH_AI__RESPONSE__OBJECT, SEARCH_AI__RESPONSE__TEXT, SEARCH_AI__RESPONSE__TIMESTAMP, SEARCH_AI__RESPONSE__TOOLCALLS, SEARCH_AI__SCHEMA, SEARCH_AI__SEARCH_QUERIES, SEARCH_AI__SEARCH_RESULTS, SEARCH_AI__SEED, SEARCH_AI__STREAMING, SEARCH_AI__TAGS, SEARCH_AI__TEMPERATURE, SEARCH_AI__TEXTS, SEARCH_AI__TOOLCALL__ARGS, SEARCH_AI__TOOLCALL__RESULT, SEARCH_AI__TOOLS, SEARCH_AI__TOOL_CALLS, SEARCH_AI__TOP_K, SEARCH_AI__TOP_P, SEARCH_AI__TOTAL_COST, SEARCH_AI__TOTAL_TOKENS__USED, SEARCH_AI__USAGE__TOKENS, SEARCH_AI__VALUES, SEARCH_AI__WARNINGS, SEARCH_ANGULAR__VERSION, SEARCH_APP_START_COLD, SEARCH_APP_START_TYPE, SEARCH_APP_START_WARM, SEARCH_APP__APP_BUILD, SEARCH_APP__APP_IDENTIFIER, SEARCH_APP__APP_NAME, SEARCH_APP__APP_START_TIME, SEARCH_APP__APP_VERSION, SEARCH_APP__BUILD, SEARCH_APP__IDENTIFIER, SEARCH_APP__IN_FOREGROUND, SEARCH_APP__NAME, SEARCH_APP__START_TIME, SEARCH_APP__VERSION, SEARCH_APP__VITALS__FRAMES__DELAY__VALUE, SEARCH_APP__VITALS__FRAMES__FROZEN__COUNT, SEARCH_APP__VITALS__FRAMES__FROZEN__RATE, SEARCH_APP__VITALS__FRAMES__SLOW__COUNT, SEARCH_APP__VITALS__FRAMES__SLOW__RATE, SEARCH_APP__VITALS__FRAMES__TOTAL__COUNT, SEARCH_APP__VITALS__STALL__DURATION, SEARCH_APP__VITALS__STALL__PERCENTAGE, SEARCH_APP__VITALS__START__COLD__VALUE, SEARCH_APP__VITALS__START__PREWARMED, SEARCH_APP__VITALS__START__REASON, SEARCH_APP__VITALS__START__SCREEN, SEARCH_APP__VITALS__START__TYPE, SEARCH_APP__VITALS__START__WARM__VALUE, SEARCH_APP__VITALS__TTFD__VALUE, SEARCH_APP__VITALS__TTID__VALUE, SEARCH_ART__GC__BLOCKING_COUNT, SEARCH_ART__GC__BLOCKING_TIME, SEARCH_ART__GC__PRE_OOME_COUNT, SEARCH_ART__GC__TOTAL_COUNT, SEARCH_ART__GC__TOTAL_TIME, SEARCH_ART__GC__WAITING_TIME, SEARCH_ART__MEMORY__FREE, SEARCH_ART__MEMORY__FREE_UNTIL_GC, SEARCH_ART__MEMORY__FREE_UNTIL_OOME, SEARCH_ART__MEMORY__MAX, SEARCH_ART__MEMORY__TOTAL, SEARCH_AWS_REGION, SEARCH_AWS__CLOUDWATCH__LOGS__LOG_GROUP, SEARCH_AWS__CLOUDWATCH__LOGS__LOG_STREAM, SEARCH_AWS__CLOUDWATCH__LOGS__URL, SEARCH_AWS__DYNAMODB__ATTRIBUTE_DEFINITIONS, SEARCH_AWS__DYNAMODB__CONSISTENT_READ, SEARCH_AWS__DYNAMODB__CONSUMED_CAPACITY, SEARCH_AWS__DYNAMODB__COUNT, SEARCH_AWS__DYNAMODB__EXCLUSIVE_START_TABLE, SEARCH_AWS__DYNAMODB__GLOBAL_SECONDARY_INDEXES, SEARCH_AWS__DYNAMODB__GLOBAL_SECONDARY_INDEX_UPDATES, SEARCH_AWS__DYNAMODB__INDEX_NAME, SEARCH_AWS__DYNAMODB__ITEM_COLLECTION_METRICS, SEARCH_AWS__DYNAMODB__LIMIT, SEARCH_AWS__DYNAMODB__LOCAL_SECONDARY_INDEXES, SEARCH_AWS__DYNAMODB__PROJECTION, SEARCH_AWS__DYNAMODB__PROVISIONED_READ_CAPACITY, SEARCH_AWS__DYNAMODB__PROVISIONED_WRITE_CAPACITY, SEARCH_AWS__DYNAMODB__SCANNED_COUNT, SEARCH_AWS__DYNAMODB__SCAN_FORWARD, SEARCH_AWS__DYNAMODB__SEGMENT, SEARCH_AWS__DYNAMODB__SELECT, SEARCH_AWS__DYNAMODB__TABLE_COUNT, SEARCH_AWS__DYNAMODB__TABLE_NAMES, SEARCH_AWS__DYNAMODB__TOTAL_SEGMENTS, SEARCH_AWS__EXTENDED_REQUEST_ID, SEARCH_AWS__KINESIS__STREAM_NAME, SEARCH_AWS__KINESIS__STREAM__NAME, SEARCH_AWS__LAMBDA__AWS_REQUEST_ID, SEARCH_AWS__LAMBDA__EXECUTION_DURATION_IN_MILLIS, SEARCH_AWS__LAMBDA__FUNCTION_NAME, SEARCH_AWS__LAMBDA__FUNCTION_VERSION, SEARCH_AWS__LAMBDA__INVOKED_ARN, SEARCH_AWS__LAMBDA__INVOKED_FUNCTION_ARN, SEARCH_AWS__LAMBDA__REMAINING_TIME_IN_MILLIS, SEARCH_AWS__LOG__GROUP__NAMES, SEARCH_AWS__LOG__STREAM__NAMES, SEARCH_AWS__OPERATION_NAME, SEARCH_AWS__REQUEST_ID, SEARCH_AWS__REQUEST__EXTENDED_ID, SEARCH_AWS__REQUEST__ID, SEARCH_AWS__REQUEST__URL, SEARCH_AWS__S3__BUCKET, SEARCH_AWS__SECRETSMANAGER__SECRET__ARN, SEARCH_AWS__SNS__TOPIC__ARN, SEARCH_AWS__STEP_FUNCTIONS__ACTIVITY__ARN, SEARCH_AWS__STEP_FUNCTIONS__STATE_MACHINE__ARN, SEARCH_BLOCKED_MAIN_THREAD, SEARCH_BROWSER__BFCACHE__FRAME, SEARCH_BROWSER__BFCACHE__NOT_RESTORED_REASON_COUNT, SEARCH_BROWSER__BFCACHE__OUTCOME, SEARCH_BROWSER__BFCACHE__REASON, SEARCH_BROWSER__NAME, SEARCH_BROWSER__NAVIGATION__ID, SEARCH_BROWSER__NAVIGATION__TYPE, SEARCH_BROWSER__PAINT__TYPE, SEARCH_BROWSER__PERFORMANCE__NAVIGATION__ACTIVATION_START, SEARCH_BROWSER__PERFORMANCE__TIME_ORIGIN, SEARCH_BROWSER__REPORT__TYPE, SEARCH_BROWSER__SCRIPT__INVOKER, SEARCH_BROWSER__SCRIPT__INVOKER_TYPE, SEARCH_BROWSER__SCRIPT__SOURCE_CHAR_POSITION, SEARCH_BROWSER__VERSION, SEARCH_BROWSER__WEB_VITAL__CLS__REPORT_EVENT, SEARCH_BROWSER__WEB_VITAL__CLS__SOURCE__KEY, SEARCH_BROWSER__WEB_VITAL__CLS__VALUE, SEARCH_BROWSER__WEB_VITAL__FCP__VALUE, SEARCH_BROWSER__WEB_VITAL__FP__VALUE, SEARCH_BROWSER__WEB_VITAL__INP__VALUE, SEARCH_BROWSER__WEB_VITAL__LCP__ELEMENT, SEARCH_BROWSER__WEB_VITAL__LCP__ID, SEARCH_BROWSER__WEB_VITAL__LCP__LOAD_TIME, SEARCH_BROWSER__WEB_VITAL__LCP__RENDER_TIME, SEARCH_BROWSER__WEB_VITAL__LCP__REPORT_EVENT, SEARCH_BROWSER__WEB_VITAL__LCP__SIZE, SEARCH_BROWSER__WEB_VITAL__LCP__URL, SEARCH_BROWSER__WEB_VITAL__LCP__VALUE, SEARCH_BROWSER__WEB_VITAL__TTFB__REQUEST_TIME, SEARCH_BROWSER__WEB_VITAL__TTFB__VALUE, SEARCH_CACHE__HIT, SEARCH_CACHE__ITEM_AGE, SEARCH_CACHE__ITEM_SIZE, SEARCH_CACHE__KEY, SEARCH_CACHE__OPERATION, SEARCH_CACHE__TAGS, SEARCH_CACHE__TTL, SEARCH_CACHE__WRITE, SEARCH_CHANNEL, SEARCH_CLIENT_SAMPLE_RATE, SEARCH_CLIENT__ADDRESS, SEARCH_CLIENT__PORT, SEARCH_CLOUDFLARE__D1__DURATION, SEARCH_CLOUDFLARE__D1__QUERY_TYPE, SEARCH_CLOUDFLARE__D1__ROWS_READ, SEARCH_CLOUDFLARE__D1__ROWS_WRITTEN, SEARCH_CLOUDFLARE__DURABLE_OBJECT__QUERY__BINDINGS, SEARCH_CLOUDFLARE__DURABLE_OBJECT__RESPONSE__ROWS_READ, SEARCH_CLOUDFLARE__DURABLE_OBJECT__RESPONSE__ROWS_WRITTEN, SEARCH_CLOUDFLARE__R2__BUCKET, SEARCH_CLOUDFLARE__R2__OPERATION, SEARCH_CLOUDFLARE__R2__REQUEST__DELIMITER, SEARCH_CLOUDFLARE__R2__REQUEST__KEY, SEARCH_CLOUDFLARE__R2__REQUEST__PART_NUMBER, SEARCH_CLOUDFLARE__R2__REQUEST__PREFIX, SEARCH_CLOUDFLARE__WORKFLOW__ATTEMPT, SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__BACKOFF, SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__DELAY, SEARCH_CLOUDFLARE__WORKFLOW__RETRIES__LIMIT, SEARCH_CLOUDFLARE__WORKFLOW__TIMEOUT, SEARCH_CLOUD__ACCOUNT__ID, SEARCH_CLOUD__AVAILABILITY_ZONE, SEARCH_CLOUD__PLATFORM, SEARCH_CLOUD__PROVIDER, SEARCH_CLOUD__REGION, SEARCH_CLOUD__RESOURCE_ID, SEARCH_CLS, SEARCH_CLS__SOURCE__KEY, SEARCH_CODE, SEARCH_CODE__FILEPATH, SEARCH_CODE__FILE__PATH, SEARCH_CODE__FUNCTION, SEARCH_CODE__FUNCTION__NAME, SEARCH_CODE__LINENO, SEARCH_CODE__LINE__NUMBER, SEARCH_CODE__NAMESPACE, SEARCH_CONNECTIONTYPE, SEARCH_CONNECTION__RTT, SEARCH_CULTURE__CALENDAR, SEARCH_CULTURE__DISPLAY_NAME, SEARCH_CULTURE__IS_24_HOUR_FORMAT, SEARCH_CULTURE__LOCALE, SEARCH_CULTURE__TIMEZONE, SEARCH_DB__COLLECTION__NAME, SEARCH_DB__CONNECTION_STRING, SEARCH_DB__DRIVER__NAME, SEARCH_DB__MONGODB__COLLECTION, SEARCH_DB__NAME, SEARCH_DB__NAMESPACE, SEARCH_DB__OPERATION, SEARCH_DB__OPERATION__BATCH__SIZE, SEARCH_DB__OPERATION__NAME, SEARCH_DB__PARAMS, SEARCH_DB__QUERY__PARAMETER__KEY, SEARCH_DB__QUERY__SUMMARY, SEARCH_DB__QUERY__TEXT, SEARCH_DB__REDIS__CONNECTION, SEARCH_DB__REDIS__KEY, SEARCH_DB__REDIS__PARAMETERS, SEARCH_DB__RESPONSE__STATUS_CODE, SEARCH_DB__SQL__BINDINGS, SEARCH_DB__STATEMENT, SEARCH_DB__STORED_PROCEDURE__NAME, SEARCH_DB__SYSTEM, SEARCH_DB__SYSTEM__NAME, SEARCH_DB__USER, SEARCH_DEVICEMEMORY, SEARCH_DEVICE__ARCHS, SEARCH_DEVICE__BATTERY_LEVEL, SEARCH_DEVICE__BATTERY_TEMPERATURE, SEARCH_DEVICE__BOOT_TIME, SEARCH_DEVICE__BRAND, SEARCH_DEVICE__CHARGING, SEARCH_DEVICE__CHIPSET, SEARCH_DEVICE__CLASS, SEARCH_DEVICE__CONNECTION_TYPE, SEARCH_DEVICE__CPU_DESCRIPTION, SEARCH_DEVICE__EXTERNAL_FREE_STORAGE, SEARCH_DEVICE__EXTERNAL_STORAGE_SIZE, SEARCH_DEVICE__FAMILY, SEARCH_DEVICE__FREE_MEMORY, SEARCH_DEVICE__FREE_STORAGE, SEARCH_DEVICE__ID, SEARCH_DEVICE__LOCALE, SEARCH_DEVICE__LOW_MEMORY, SEARCH_DEVICE__LOW_POWER_MODE, SEARCH_DEVICE__MANUFACTURER, SEARCH_DEVICE__MEMORY_SIZE, SEARCH_DEVICE__MEMORY__ESTIMATED_CAPACITY, SEARCH_DEVICE__MODEL, SEARCH_DEVICE__MODEL_ID, SEARCH_DEVICE__NAME, SEARCH_DEVICE__ONLINE, SEARCH_DEVICE__ORIENTATION, SEARCH_DEVICE__PROCESSOR_COUNT, SEARCH_DEVICE__PROCESSOR_FREQUENCY, SEARCH_DEVICE__SCREEN_DENSITY, SEARCH_DEVICE__SCREEN_DPI, SEARCH_DEVICE__SCREEN_HEIGHT_PIXELS, SEARCH_DEVICE__SCREEN_WIDTH_PIXELS, SEARCH_DEVICE__SIMULATOR, SEARCH_DEVICE__STORAGE_SIZE, SEARCH_DEVICE__THERMAL_STATE, SEARCH_DEVICE__TIMEZONE, SEARCH_DEVICE__USABLE_MEMORY, SEARCH_DIST, SEARCH_DJANGO__FUNCTION_NAME, SEARCH_DJANGO__MIDDLEWARE_NAME, SEARCH_EFFECTIVECONNECTIONTYPE, SEARCH_ENVIRONMENT, SEARCH_ERROR__TYPE, SEARCH_EVENT__ID, SEARCH_EVENT__NAME, SEARCH_EXCEPTION__ESCAPED, SEARCH_EXCEPTION__MESSAGE, SEARCH_EXCEPTION__STACKTRACE, SEARCH_EXCEPTION__TYPE, SEARCH_FAAS__COLDSTART, SEARCH_FAAS__CRON, SEARCH_FAAS__DURATION_IN_MS, SEARCH_FAAS__ENTRY_POINT, SEARCH_FAAS__EXECUTION, SEARCH_FAAS__ID, SEARCH_FAAS__IDENTITY, SEARCH_FAAS__INVOCATION_ID, SEARCH_FAAS__INVOKED_NAME, SEARCH_FAAS__INVOKED_PROVIDER, SEARCH_FAAS__INVOKED_REGION, SEARCH_FAAS__NAME, SEARCH_FAAS__TIME, SEARCH_FAAS__TRIGGER, SEARCH_FAAS__VERSION, SEARCH_FCP, SEARCH_FILE__PATH, SEARCH_FILE__SIZE, SEARCH_FLAG__EVALUATION__KEY, SEARCH_FP, SEARCH_FRAMES_FROZEN_RATE, SEARCH_FRAMES_SLOW_RATE, SEARCH_FRAMES__DELAY, SEARCH_FRAMES__FROZEN, SEARCH_FRAMES__SLOW, SEARCH_FRAMES__TOTAL, SEARCH_FS_ERROR, SEARCH_GCP_REGION, SEARCH_GCP__FUNCTION__CONTEXT__EVENT_ID, SEARCH_GCP__FUNCTION__CONTEXT__EVENT_TYPE, SEARCH_GCP__FUNCTION__CONTEXT__ID, SEARCH_GCP__FUNCTION__CONTEXT__RESOURCE, SEARCH_GCP__FUNCTION__CONTEXT__SOURCE, SEARCH_GCP__FUNCTION__CONTEXT__SPECVERSION, SEARCH_GCP__FUNCTION__CONTEXT__TIME, SEARCH_GCP__FUNCTION__CONTEXT__TIMESTAMP, SEARCH_GCP__FUNCTION__CONTEXT__TYPE, SEARCH_GCP__PROJECT__ID, SEARCH_GEN_AI__AGENT__NAME, SEARCH_GEN_AI__CONTEXT__UTILIZATION, SEARCH_GEN_AI__CONTEXT__WINDOW_SIZE, SEARCH_GEN_AI__CONVERSATION__ID, SEARCH_GEN_AI__COST__CACHE_CREATION__INPUT_TOKENS, SEARCH_GEN_AI__COST__CACHE_READ__INPUT_TOKENS, SEARCH_GEN_AI__COST__INPUT_TOKENS, SEARCH_GEN_AI__COST__OUTPUT_TOKENS, SEARCH_GEN_AI__COST__REASONING__OUTPUT_TOKENS, SEARCH_GEN_AI__COST__TOTAL_TOKENS, SEARCH_GEN_AI__EMBEDDINGS__INPUT, SEARCH_GEN_AI__FUNCTION_ID, SEARCH_GEN_AI__INPUT__MESSAGES, SEARCH_GEN_AI__OPERATION__NAME, SEARCH_GEN_AI__OPERATION__TYPE, SEARCH_GEN_AI__OUTPUT__MESSAGES, SEARCH_GEN_AI__PIPELINE__NAME, SEARCH_GEN_AI__PROMPT, SEARCH_GEN_AI__PROMPT__NAME, SEARCH_GEN_AI__PROVIDER__NAME, SEARCH_GEN_AI__REQUEST__AVAILABLE_TOOLS, SEARCH_GEN_AI__REQUEST__FREQUENCY_PENALTY, SEARCH_GEN_AI__REQUEST__MAX_TOKENS, SEARCH_GEN_AI__REQUEST__MESSAGES, SEARCH_GEN_AI__REQUEST__MODEL, SEARCH_GEN_AI__REQUEST__PRESENCE_PENALTY, SEARCH_GEN_AI__REQUEST__REASONING__LEVEL, SEARCH_GEN_AI__REQUEST__SCHEMA, SEARCH_GEN_AI__REQUEST__SEED, SEARCH_GEN_AI__REQUEST__STOP_SEQUENCES, SEARCH_GEN_AI__REQUEST__TEMPERATURE, SEARCH_GEN_AI__REQUEST__TOP_K, SEARCH_GEN_AI__REQUEST__TOP_P, SEARCH_GEN_AI__RESPONSE__FINISH_REASON, SEARCH_GEN_AI__RESPONSE__FINISH_REASONS, SEARCH_GEN_AI__RESPONSE__ID, SEARCH_GEN_AI__RESPONSE__MODEL, SEARCH_GEN_AI__RESPONSE__OBJECT, SEARCH_GEN_AI__RESPONSE__STREAMING, SEARCH_GEN_AI__RESPONSE__TEXT, SEARCH_GEN_AI__RESPONSE__TIME_TO_FIRST_CHUNK, SEARCH_GEN_AI__RESPONSE__TIME_TO_FIRST_TOKEN, SEARCH_GEN_AI__RESPONSE__TOKENS_PER_SECOND, SEARCH_GEN_AI__RESPONSE__TOOL_CALLS, SEARCH_GEN_AI__SYSTEM, SEARCH_GEN_AI__SYSTEM_INSTRUCTIONS, SEARCH_GEN_AI__SYSTEM__MESSAGE, SEARCH_GEN_AI__TOOL__CALL__ARGUMENTS, SEARCH_GEN_AI__TOOL__CALL__RESULT, SEARCH_GEN_AI__TOOL__DEFINITIONS, SEARCH_GEN_AI__TOOL__DESCRIPTION, SEARCH_GEN_AI__TOOL__INPUT, SEARCH_GEN_AI__TOOL__MESSAGE, SEARCH_GEN_AI__TOOL__NAME, SEARCH_GEN_AI__TOOL__OUTPUT, SEARCH_GEN_AI__TOOL__TYPE, SEARCH_GEN_AI__USAGE__CACHE_CREATION__INPUT_TOKENS, SEARCH_GEN_AI__USAGE__CACHE_READ__INPUT_TOKENS, SEARCH_GEN_AI__USAGE__COMPLETION_TOKENS, SEARCH_GEN_AI__USAGE__INPUT_TOKENS, SEARCH_GEN_AI__USAGE__INPUT_TOKENS__CACHED, SEARCH_GEN_AI__USAGE__INPUT_TOKENS__CACHE_WRITE, SEARCH_GEN_AI__USAGE__OUTPUT_TOKENS, SEARCH_GEN_AI__USAGE__OUTPUT_TOKENS__REASONING, SEARCH_GEN_AI__USAGE__PROMPT_TOKENS, SEARCH_GEN_AI__USAGE__REASONING__OUTPUT_TOKENS, SEARCH_GEN_AI__USAGE__TOTAL_TOKENS, SEARCH_GRAPHQL__DOCUMENT, SEARCH_GRAPHQL__OPERATION__NAME, SEARCH_GRAPHQL__OPERATION__TYPE, SEARCH_GRAPHQL__PROCESSING__TYPE, SEARCH_GRAPHQL__SOURCE, SEARCH_GRPC__ERROR__BAD_REQUEST__FIELD_VIOLATIONS, SEARCH_GRPC__ERROR__DEBUG_INFO__DETAIL, SEARCH_GRPC__ERROR__DEBUG_INFO__STACK_ENTRIES, SEARCH_GRPC__ERROR__ERROR_INFO__DOMAIN, SEARCH_GRPC__ERROR__ERROR_INFO__METADATA__KEY, SEARCH_GRPC__ERROR__ERROR_INFO__REASON, SEARCH_GRPC__ERROR__PRECONDITION_FAILURE__VIOLATIONS, SEARCH_GRPC__ERROR__QUOTA_FAILURE__VIOLATIONS, SEARCH_GRPC__ERROR__RESOURCE_INFO__DESCRIPTION, SEARCH_GRPC__ERROR__RESOURCE_INFO__OWNER, SEARCH_GRPC__ERROR__RESOURCE_INFO__RESOURCE_NAME, SEARCH_GRPC__ERROR__RESOURCE_INFO__RESOURCE_TYPE, SEARCH_GRPC__ERROR__RETRY_INFO__RETRY_DELAY_MS, SEARCH_HARDWARECONCURRENCY, SEARCH_HTTP__CLIENT_IP, SEARCH_HTTP__DECODED_RESPONSE_CONTENT_LENGTH, SEARCH_HTTP__FLAVOR, SEARCH_HTTP__FRAGMENT, SEARCH_HTTP__HOST, SEARCH_HTTP__METHOD, SEARCH_HTTP__QUERY, SEARCH_HTTP__REQUEST_CONTENT_LENGTH, SEARCH_HTTP__REQUEST_CONTENT_LENGTH_UNCOMPRESSED, SEARCH_HTTP__REQUEST_METHOD, SEARCH_HTTP__REQUEST__BODY__DATA, SEARCH_HTTP__REQUEST__BODY__DECODED_SIZE, SEARCH_HTTP__REQUEST__BODY__SIZE, SEARCH_HTTP__REQUEST__CONNECTION_END, SEARCH_HTTP__REQUEST__CONNECT_START, SEARCH_HTTP__REQUEST__DOMAIN_LOOKUP_END, SEARCH_HTTP__REQUEST__DOMAIN_LOOKUP_START, SEARCH_HTTP__REQUEST__FETCH_START, SEARCH_HTTP__REQUEST__HEADER__KEY, SEARCH_HTTP__REQUEST__METHOD, SEARCH_HTTP__REQUEST__REDIRECT_END, SEARCH_HTTP__REQUEST__REDIRECT_START, SEARCH_HTTP__REQUEST__REQUEST_START, SEARCH_HTTP__REQUEST__RESEND_COUNT, SEARCH_HTTP__REQUEST__RESPONSE_END, SEARCH_HTTP__REQUEST__RESPONSE_START, SEARCH_HTTP__REQUEST__SAME_ORIGIN, SEARCH_HTTP__REQUEST__SECURE_CONNECTION_START, SEARCH_HTTP__REQUEST__TIME_TO_FIRST_BYTE, SEARCH_HTTP__REQUEST__WORKER_START, SEARCH_HTTP__RESPONSE_CONTENT_LENGTH, SEARCH_HTTP__RESPONSE_CONTENT_LENGTH_UNCOMPRESSED, SEARCH_HTTP__RESPONSE_STATUS_CODE, SEARCH_HTTP__RESPONSE_TRANSFER_SIZE, SEARCH_HTTP__RESPONSE__BODY__DECODED_SIZE, SEARCH_HTTP__RESPONSE__BODY__SIZE, SEARCH_HTTP__RESPONSE__HEADER__CONTENT_LENGTH, SEARCH_HTTP__RESPONSE__HEADER__KEY, SEARCH_HTTP__RESPONSE__SIZE, SEARCH_HTTP__RESPONSE__STATUS_CODE, SEARCH_HTTP__RESPONSE__STATUS_TEXT, SEARCH_HTTP__ROUTE, SEARCH_HTTP__SCHEME, SEARCH_HTTP__SERVER_NAME, SEARCH_HTTP__SERVER__REQUEST__TIME_IN_QUEUE, SEARCH_HTTP__STATUS_CODE, SEARCH_HTTP__STATUS_TEXT, SEARCH_HTTP__TARGET, SEARCH_HTTP__URL, SEARCH_HTTP__USER_AGENT, SEARCH_ID, SEARCH_INP, SEARCH_JSONRPC__PROTOCOL__VERSION, SEARCH_JSONRPC__REQUEST__ID, SEARCH_JVM__GC__ACTION, SEARCH_JVM__GC__NAME, SEARCH_JVM__MEMORY__POOL__NAME, SEARCH_JVM__MEMORY__TYPE, SEARCH_JVM__THREAD__DAEMON, SEARCH_JVM__THREAD__STATE, SEARCH_KOA__NAME, SEARCH_KOA__TYPE, SEARCH_LANGCHAIN__CHAIN__NAME, SEARCH_LCP, SEARCH_LCP__ELEMENT, SEARCH_LCP__ID, SEARCH_LCP__LOADTIME, SEARCH_LCP__RENDERTIME, SEARCH_LCP__SIZE, SEARCH_LCP__URL, SEARCH_LITESTAR__MIDDLEWARE_NAME, SEARCH_LOGGER__NAME, SEARCH_MCP__CANCELLED__REASON, SEARCH_MCP__CANCELLED__REQUEST_ID, SEARCH_MCP__CLIENT__NAME, SEARCH_MCP__CLIENT__TITLE, SEARCH_MCP__CLIENT__VERSION, SEARCH_MCP__LIFECYCLE__PHASE, SEARCH_MCP__LOGGING__DATA_TYPE, SEARCH_MCP__LOGGING__LEVEL, SEARCH_MCP__LOGGING__LOGGER, SEARCH_MCP__LOGGING__MESSAGE, SEARCH_MCP__METHOD__NAME, SEARCH_MCP__PROGRESS__CURRENT, SEARCH_MCP__PROGRESS__MESSAGE, SEARCH_MCP__PROGRESS__PERCENTAGE, SEARCH_MCP__PROGRESS__TOKEN, SEARCH_MCP__PROGRESS__TOTAL, SEARCH_MCP__PROMPT__NAME, SEARCH_MCP__PROMPT__RESULT__DESCRIPTION, SEARCH_MCP__PROMPT__RESULT__MESSAGE_CONTENT, SEARCH_MCP__PROMPT__RESULT__MESSAGE_COUNT, SEARCH_MCP__PROMPT__RESULT__MESSAGE_ROLE, SEARCH_MCP__PROTOCOL__READY, SEARCH_MCP__PROTOCOL__VERSION, SEARCH_MCP__REQUEST__ARGUMENT__KEY, SEARCH_MCP__REQUEST__ARGUMENT__NAME, SEARCH_MCP__REQUEST__ARGUMENT__URI, SEARCH_MCP__REQUEST__ID, SEARCH_MCP__RESOURCE__PROTOCOL, SEARCH_MCP__RESOURCE__URI, SEARCH_MCP__SERVER__NAME, SEARCH_MCP__SERVER__TITLE, SEARCH_MCP__SERVER__VERSION, SEARCH_MCP__SESSION__ID, SEARCH_MCP__TOOL__NAME, SEARCH_MCP__TOOL__RESULT__CONTENT, SEARCH_MCP__TOOL__RESULT__CONTENT_COUNT, SEARCH_MCP__TOOL__RESULT__IS_ERROR, SEARCH_MCP__TRANSPORT, SEARCH_MDC__KEY, SEARCH_MESSAGING__BATCH__MESSAGE_COUNT, SEARCH_MESSAGING__CONVERSATION_ID, SEARCH_MESSAGING__DESTINATION, SEARCH_MESSAGING__DESTINATION_KIND, SEARCH_MESSAGING__DESTINATION__CONNECTION, SEARCH_MESSAGING__DESTINATION__NAME, SEARCH_MESSAGING__DESTINATION__PARTITION__ID, SEARCH_MESSAGING__KAFKA__MESSAGE__KEY, SEARCH_MESSAGING__KAFKA__MESSAGE__TOMBSTONE, SEARCH_MESSAGING__KAFKA__OFFSET, SEARCH_MESSAGING__MESSAGE_ID, SEARCH_MESSAGING__MESSAGE__BODY__SIZE, SEARCH_MESSAGING__MESSAGE__CONVERSATION_ID, SEARCH_MESSAGING__MESSAGE__ENVELOPE__SIZE, SEARCH_MESSAGING__MESSAGE__ID, SEARCH_MESSAGING__MESSAGE__RECEIVE__LATENCY, SEARCH_MESSAGING__MESSAGE__RETRY__COUNT, SEARCH_MESSAGING__OPERATION, SEARCH_MESSAGING__OPERATION__NAME, SEARCH_MESSAGING__OPERATION__TYPE, SEARCH_MESSAGING__PROTOCOL, SEARCH_MESSAGING__PROTOCOL_VERSION, SEARCH_MESSAGING__RABBITMQ__DESTINATION__ROUTING_KEY, SEARCH_MESSAGING__RABBITMQ__ROUTING_KEY, SEARCH_MESSAGING__SYSTEM, SEARCH_MESSAGING__URL, SEARCH_METHOD, SEARCH_MIDDLEWARE__NAME, SEARCH_MOBILE__FRAMES_DELAY, SEARCH_MOBILE__FROZEN_FRAMES, SEARCH_MOBILE__SLOW_FRAMES, SEARCH_MOBILE__TOTAL_FRAMES, SEARCH_NAVIGATION__ORIGIN, SEARCH_NAVIGATION__ROUTE__ID, SEARCH_NAVIGATION__TYPE, SEARCH_NEL__ELAPSED_TIME, SEARCH_NEL__PHASE, SEARCH_NEL__REFERRER, SEARCH_NEL__SAMPLING_FUNCTION, SEARCH_NEL__TYPE, SEARCH_NETWORK__CONNECTION__EFFECTIVE_TYPE, SEARCH_NETWORK__CONNECTION__RTT, SEARCH_NETWORK__CONNECTION__TYPE, SEARCH_NETWORK__LOCAL__ADDRESS, SEARCH_NETWORK__LOCAL__PORT, SEARCH_NETWORK__PEER__ADDRESS, SEARCH_NETWORK__PEER__PORT, SEARCH_NETWORK__PROTOCOL__NAME, SEARCH_NETWORK__PROTOCOL__VERSION, SEARCH_NETWORK__TRANSPORT, SEARCH_NETWORK__TYPE, SEARCH_NET__HOST__IP, SEARCH_NET__HOST__NAME, SEARCH_NET__HOST__PORT, SEARCH_NET__PEER__IP, SEARCH_NET__PEER__NAME, SEARCH_NET__PEER__PORT, SEARCH_NET__PROTOCOL__NAME, SEARCH_NET__PROTOCOL__VERSION, SEARCH_NET__SOCK__FAMILY, SEARCH_NET__SOCK__HOST__ADDR, SEARCH_NET__SOCK__HOST__PORT, SEARCH_NET__SOCK__PEER__ADDR, SEARCH_NET__SOCK__PEER__NAME, SEARCH_NET__SOCK__PEER__PORT, SEARCH_NET__TRANSPORT, SEARCH_ORIGIN, SEARCH_OS__BUILD, SEARCH_OS__BUILD_ID, SEARCH_OS__DESCRIPTION, SEARCH_OS__KERNEL_VERSION, SEARCH_OS__NAME, SEARCH_OS__RAW_DESCRIPTION, SEARCH_OS__ROOTED, SEARCH_OS__THEME, SEARCH_OS__TYPE, SEARCH_OS__VERSION, SEARCH_OTEL__KIND, SEARCH_OTEL__SCOPE__NAME, SEARCH_OTEL__SCOPE__VERSION, SEARCH_OTEL__STATUS_CODE, SEARCH_OTEL__STATUS_DESCRIPTION, SEARCH_PARAMS__KEY, SEARCH_PERFORMANCE__ACTIVATIONSTART, SEARCH_PERFORMANCE__TIMEORIGIN, SEARCH_PLATFORM, SEARCH_PORT, SEARCH_PREVIOUS_ROUTE, SEARCH_PROCESS__COMMAND_ARGS, SEARCH_PROCESS__EXECUTABLE__NAME, SEARCH_PROCESS__PID, SEARCH_PROCESS__RUNTIME__DESCRIPTION, SEARCH_PROCESS__RUNTIME__ENGINE__NAME, SEARCH_PROCESS__RUNTIME__ENGINE__VERSION, SEARCH_PROCESS__RUNTIME__NAME, SEARCH_PROCESS__RUNTIME__VERSION, SEARCH_PROFILER__ID, SEARCH_PROFILE_ID, SEARCH_PROFILE__ID, SEARCH_QUERY, SEARCH_QUERY__KEY, SEARCH_REACT__VERSION, SEARCH_REDIS__COMMAND, SEARCH_REDIS__KEY, SEARCH_RELEASE, SEARCH_REMIX__ACTION_FORM_DATA__KEY, SEARCH_REPLAY_ID, SEARCH_REPLAY__ID, SEARCH_RESOURCE__DEPLOYMENT__ENVIRONMENT, SEARCH_RESOURCE__DEPLOYMENT__ENVIRONMENT__NAME, SEARCH_RESOURCE__RENDER_BLOCKING_STATUS, SEARCH_ROUTE, SEARCH_ROUTER__NAVIGATION__ORIGIN, SEARCH_ROUTER__NAVIGATION__ROUTE__ID, SEARCH_ROUTER__NAVIGATION__TYPE, SEARCH_RPC__GRPC__STATUS_CODE, SEARCH_RPC__METHOD, SEARCH_RPC__RESPONSE__STATUS_CODE, SEARCH_RPC__SERVICE, SEARCH_RPC__SYSTEM, SEARCH_RPC__SYSTEM__NAME, SEARCH_RUNTIME__BUILD, SEARCH_RUNTIME__NAME, SEARCH_RUNTIME__RAW_DESCRIPTION, SEARCH_RUNTIME__VERSION, SEARCH_SCORE__KEY, SEARCH_SCORE__RATIO__KEY, SEARCH_SCORE__TOTAL, SEARCH_SCORE__WEIGHT__KEY, SEARCH_SDK__NAME, SEARCH_SDK__VERSION, SEARCH_SENTRY__ACTION, SEARCH_SENTRY__BROWSER__VERSION, SEARCH_SENTRY__CANCELLATION_REASON, SEARCH_SENTRY__CATEGORY, SEARCH_SENTRY__CLIENT_SAMPLE_RATE, SEARCH_SENTRY__DESCRIPTION, SEARCH_SENTRY__DIST, SEARCH_SENTRY__DOMAIN, SEARCH_SENTRY__DSC__ENVIRONMENT, SEARCH_SENTRY__DSC__PROJECT_ID, SEARCH_SENTRY__DSC__PUBLIC_KEY, SEARCH_SENTRY__DSC__RELEASE, SEARCH_SENTRY__DSC__SAMPLED, SEARCH_SENTRY__DSC__SAMPLE_RATE, SEARCH_SENTRY__DSC__TRACE_ID, SEARCH_SENTRY__DSC__TRANSACTION, SEARCH_SENTRY__ENVIRONMENT, SEARCH_SENTRY__EVENT__SERIALIZED_BREADCRUMBS, SEARCH_SENTRY__EVENT__SERIALIZED_CONTEXTS, SEARCH_SENTRY__EVENT__SERIALIZED_EXTRA, SEARCH_SENTRY__EVENT__SERIALIZED_META, SEARCH_SENTRY__EXCLUSIVE_TIME, SEARCH_SENTRY__FRAMES__FROZEN, SEARCH_SENTRY__FRAMES__SLOW, SEARCH_SENTRY__FRAMES__TOTAL, SEARCH_SENTRY__GRAPHQL__OPERATION, SEARCH_SENTRY__GROUP, SEARCH_SENTRY__HTTP__PREFETCH, SEARCH_SENTRY__IDLE_SPAN_FINISH_REASON, SEARCH_SENTRY__IS_REMOTE, SEARCH_SENTRY__KIND, SEARCH_SENTRY__MAIN_THREAD, SEARCH_SENTRY__MESSAGE__PARAMETER__KEY, SEARCH_SENTRY__MESSAGE__TEMPLATE, SEARCH_SENTRY__METRIC__SOURCE, SEARCH_SENTRY__MOBILE, SEARCH_SENTRY__MODULE__KEY, SEARCH_SENTRY__NEXTJS__SSR__FUNCTION__ROUTE, SEARCH_SENTRY__NEXTJS__SSR__FUNCTION__TYPE, SEARCH_SENTRY__NORMALIZED_DB_QUERY, SEARCH_SENTRY__NORMALIZED_DB_QUERY__HASH, SEARCH_SENTRY__NORMALIZED_DESCRIPTION, SEARCH_SENTRY__OBSERVED_TIMESTAMP_NANOS, SEARCH_SENTRY__OP, SEARCH_SENTRY__ORIGIN, SEARCH_SENTRY__PAGELOAD__SPAN_ID, SEARCH_SENTRY__PLATFORM, SEARCH_SENTRY__PROFILER_ID, SEARCH_SENTRY__PROFILE_ID, SEARCH_SENTRY__RELAY__INGRESS, SEARCH_SENTRY__RELAY__PIPELINE, SEARCH_SENTRY__RELEASE, SEARCH_SENTRY__REPLAY_ID, SEARCH_SENTRY__REPLAY_IS_BUFFERING, SEARCH_SENTRY__REPORT_EVENT, SEARCH_SENTRY__SDK__INTEGRATIONS, SEARCH_SENTRY__SDK__NAME, SEARCH_SENTRY__SDK__VERSION, SEARCH_SENTRY__SEGMENT_ID, SEARCH_SENTRY__SEGMENT__ID, SEARCH_SENTRY__SEGMENT__NAME, SEARCH_SENTRY__SEGMENT__NAME__SOURCE, SEARCH_SENTRY__SERVER_SAMPLE_RATE, SEARCH_SENTRY__SOURCE, SEARCH_SENTRY__SPAN__SOURCE, SEARCH_SENTRY__STATUS, SEARCH_SENTRY__STATUS_CODE, SEARCH_SENTRY__STATUS__MESSAGE, SEARCH_SENTRY__SVELTEKIT__NAVIGATION__FROM, SEARCH_SENTRY__SVELTEKIT__NAVIGATION__TO, SEARCH_SENTRY__SVELTEKIT__NAVIGATION__TYPE, SEARCH_SENTRY__TIMESTAMP__SEQUENCE, SEARCH_SENTRY__TRACE_LIFECYCLE, SEARCH_SENTRY__TRACE__PARENT_SPAN_ID, SEARCH_SENTRY__TRACE__STATUS, SEARCH_SENTRY__TRANSACTION, SEARCH_SENTRY__USER__IP, SEARCH_SENTRY__USER__USERNAME, SEARCH_SERVER_NAME, SEARCH_SERVER_SAMPLE_RATE, SEARCH_SERVER__ADDRESS, SEARCH_SERVER__PORT, SEARCH_SERVICE__NAME, SEARCH_SERVICE__VERSION, SEARCH_SESSION__ID, SEARCH_SPAN__ACTION, SEARCH_SPAN__CATEGORY, SEARCH_SPAN__DOMAIN, SEARCH_SPAN__GROUP, SEARCH_SPAN__KIND, SEARCH_SPAN__OP, SEARCH_SPAN__STATUS, SEARCH_SPAN__STATUS_CODE, SEARCH_SPAN__STATUS__MESSAGE, SEARCH_SPAN__SYSTEM, SEARCH_STALL_PERCENTAGE, SEARCH_STALL_TOTAL_TIME, SEARCH_STARLETTE__MIDDLEWARE_NAME, SEARCH_STARLITE__MIDDLEWARE_NAME, SEARCH_STATE__TYPE, SEARCH_SUBPROCESS__PID, SEARCH_SVELTEKIT__LOAD__ENVIRONMENT, SEARCH_SVELTEKIT__LOAD__NODE_ID, SEARCH_SVELTEKIT__LOAD__NODE_TYPE, SEARCH_SVELTEKIT__TRACING__ORIGINAL_NAME, SEARCH_THREAD__ID, SEARCH_THREAD__NAME, SEARCH_TIMBER__TAG, SEARCH_TIME_TO_FULL_DISPLAY, SEARCH_TIME_TO_INITIAL_DISPLAY, SEARCH_TRACE_LIFECYCLE, SEARCH_TRACE__STATUS, SEARCH_TRANSACTION, SEARCH_TRANSACTION__SPAN_ID, SEARCH_TRPC__PROCEDURE_PATH, SEARCH_TRPC__PROCEDURE_TYPE, SEARCH_TTFB, SEARCH_TTFB__REQUESTTIME, SEARCH_TYPE, SEARCH_UI__COMPONENT_NAME, SEARCH_UI__CONTRIBUTES_TO_TTFD, SEARCH_UI__CONTRIBUTES_TO_TTID, SEARCH_UI__ELEMENT__HEIGHT, SEARCH_UI__ELEMENT__ID, SEARCH_UI__ELEMENT__IDENTIFIER, SEARCH_UI__ELEMENT__LOAD_TIME, SEARCH_UI__ELEMENT__PAINT_TYPE, SEARCH_UI__ELEMENT__RENDER_TIME, SEARCH_UI__ELEMENT__TYPE, SEARCH_UI__ELEMENT__URL, SEARCH_UI__ELEMENT__WIDTH, SEARCH_URL, SEARCH_URL__DOMAIN, SEARCH_URL__FRAGMENT, SEARCH_URL__FULL, SEARCH_URL__PATH, SEARCH_URL__PATH__PARAMETER__KEY, SEARCH_URL__PATH__PARAMS__KEY, SEARCH_URL__PORT, SEARCH_URL__QUERY, SEARCH_URL__SAME_ORIGIN, SEARCH_URL__SCHEME, SEARCH_URL__TEMPLATE, SEARCH_USER_AGENT__ORIGINAL, SEARCH_USER__EMAIL, SEARCH_USER__FULL_NAME, SEARCH_USER__GEO__CITY, SEARCH_USER__GEO__COUNTRY_CODE, SEARCH_USER__GEO__REGION, SEARCH_USER__GEO__SUBDIVISION, SEARCH_USER__HASH, SEARCH_USER__ID, SEARCH_USER__IP, SEARCH_USER__IP_ADDRESS, SEARCH_USER__NAME, SEARCH_USER__ROLES, SEARCH_USER__USERNAME, SEARCH_VERCEL__BRANCH, SEARCH_VERCEL__BUILD_ID, SEARCH_VERCEL__DEPLOYMENT_ID, SEARCH_VERCEL__DESTINATION, SEARCH_VERCEL__EDGE_TYPE, SEARCH_VERCEL__ENTRYPOINT, SEARCH_VERCEL__EXECUTION_REGION, SEARCH_VERCEL__ID, SEARCH_VERCEL__JA3_DIGEST, SEARCH_VERCEL__JA4_DIGEST, SEARCH_VERCEL__LOG_TYPE, SEARCH_VERCEL__PATH, SEARCH_VERCEL__PROJECT_ID, SEARCH_VERCEL__PROJECT_NAME, SEARCH_VERCEL__PROXY__CACHE_ID, SEARCH_VERCEL__PROXY__CLIENT_IP, SEARCH_VERCEL__PROXY__HOST, SEARCH_VERCEL__PROXY__LAMBDA_REGION, SEARCH_VERCEL__PROXY__METHOD, SEARCH_VERCEL__PROXY__PATH, SEARCH_VERCEL__PROXY__PATH_TYPE, SEARCH_VERCEL__PROXY__PATH_TYPE_VARIANT, SEARCH_VERCEL__PROXY__REFERER, SEARCH_VERCEL__PROXY__REGION, SEARCH_VERCEL__PROXY__RESPONSE_BYTE_SIZE, SEARCH_VERCEL__PROXY__SCHEME, SEARCH_VERCEL__PROXY__STATUS_CODE, SEARCH_VERCEL__PROXY__TIMESTAMP, SEARCH_VERCEL__PROXY__USER_AGENT, SEARCH_VERCEL__PROXY__VERCEL_CACHE, SEARCH_VERCEL__PROXY__VERCEL_ID, SEARCH_VERCEL__PROXY__WAF_ACTION, SEARCH_VERCEL__PROXY__WAF_RULE_ID, SEARCH_VERCEL__REQUEST_ID, SEARCH_VERCEL__SOURCE, SEARCH_VERCEL__STATUS_CODE };
export type { AttributeSearchMetadata, AttributeSearchName, AttributeSearchType };
