import { Value } from '../value'; export interface Subtable { filter: (predicate: (x: S) => boolean) => Subtable; count: () => number; max(f: (x: S) => V): any; min(f: (x: S) => V): any; average(f: (x: S) => V): any; sum(f: (x: S) => V): any; }