import type { ElementDomain, ElementSelection, ScoredSelection } from "./types.ts"; export declare function selection(domain: ElementDomain, indices: readonly number[], ordered?: boolean): ElementSelection; export declare class MeshScoredSelection implements ScoredSelection { readonly domain: ElementDomain; readonly entries: ReadonlyArray<{ readonly index: number; readonly score: number; }>; constructor(domain: ElementDomain, entries: readonly { readonly index: number; readonly score: number; }[]); top(): ElementSelection; topN(n: number): ElementSelection; threshold(min: number): ElementSelection; bottom(): ElementSelection; bottomN(n: number): ElementSelection; } //# sourceMappingURL=selection.d.ts.map