import type { FunctionDefinition } from '../../definition_types'; /** * Extracts the value of a single sub-field from a `flattened` field root as `keyword`. * * @example * FROM flattened_otel_logs * | WHERE @timestamp == "2020-01-01T00:02:48.461Z" * | EVAL hn = field_extract(resource.attributes, "host.name") * | KEEP hn */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=field_extract.d.ts.map