import { SortFiveTables } from './sort_five_tables'; import { FilterFiveTables } from './filter_five_tables'; import { GroupFiveTables } from './group_five_tables'; import { EnforceNonEmptyRecord, ValueOrNestedValueRecord, ValueRecord } from '../../record'; import { Value } from '../../value'; import { Subtable } from '../subtable'; import { Table } from '../one/table'; import { SelectScalar } from '../selection/select_scalar'; import { SelectRows } from '../selection/select_rows'; import { SelectVector } from '../selection/select_vector'; import { AggregatableTable } from '../aggregatable_table'; import { SelectStatement } from '../../statements/select_statement'; import { SelectGuaranteedSingleRow } from '../selection/select_guaranteed_single_row'; import { SelectSetsOfRows } from '../selection/select_sets_of_rows'; export declare class JoinFifthTable { private readonly statement; constructor(statement: SelectStatement); filter(predicate: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => boolean): FilterFiveTables; filter

(provided: P, predicate: (parameters: P, first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => boolean): FilterFiveTables; sortBy(sortBy: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => Value): SortFiveTables; sortDescendinglyBy(sortBy: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => Value): SortFiveTables; select(firstName: string, secondName: string, thirdName: string, fourthName: string): SelectSetsOfRows<{ [first in K]: T1; } & { [second in K]: T2; } & { [third in K]: T3; } & { [fourth in K]: T4; }>; map(f: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => EnforceNonEmptyRecord & U): SelectRows; map(tableInSubquery: Table, f: (s: Subtable, first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => EnforceNonEmptyRecord & U): SelectRows; get(f: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => U): SelectVector; count(): SelectScalar; max(f: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => V): SelectScalar; min(f: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => V): SelectScalar; sum(f: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => V): SelectScalar; average(f: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => V): SelectScalar; aggregate(aggregation: (first: AggregatableTable, second: AggregatableTable, third: AggregatableTable, fourth: AggregatableTable, fifth: AggregatableTable, count: () => number) => EnforceNonEmptyRecord & A): SelectGuaranteedSingleRow; groupBy(getKey: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => EnforceNonEmptyRecord & K): GroupFiveTables; }