import { SortFiveTables } from './sort_five_tables'; import { FilterFiveTables } from './filter_five_tables'; import { GroupFiveTables } from './group_five_tables'; import { EnforceNonEmptyRecord, TableAggregationRecord, 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, Count } from '../aggregatable_table'; import { Constructor, SelectStatement } from '../../statements/select_statement'; import { SelectGuaranteedSingleRow } from '../selection/select_guaranteed_single_row'; export declare class JoinFifthTable { private readonly firstConstructor; private readonly secondConstructor; private readonly thirdConstructor; private readonly fourthConstructor; private readonly fifthConstructor; private readonly statement; constructor(firstConstructor: Constructor, secondConstructor: Constructor, thirdConstructor: Constructor, fourthConstructor: Constructor, fifthConstructor: 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): SelectRows<{ [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: () => Count) => EnforceNonEmptyRecord & A): SelectGuaranteedSingleRow; groupBy(getKey: (first: T1, second: T2, third: T3, fourth: T4, fifth: T5) => EnforceNonEmptyRecord & K): GroupFiveTables; }