import { Any, AnyObject, Options, SortSpec } from"../../types";
/**
* Returns the top element within a group according to the specified sort order.
*/exportdeclareconst$top: (coll: AnyObject[], expr: {
sortBy: SortSpec;
output: Any;
}, options: Options) =>Any[];