import { Aggregate } from '../build/metapair/search/aggregate/v1/aggregate_pb'; /** * Build nested aggregate * * @param path */ declare function nested(path: string): Aggregate; /** * Build terms aggregate * * @param field */ declare function terms(field: string): Aggregate; declare const _default: { nested: typeof nested; terms: typeof terms; }; export default _default;