import { LimitRows } from './limit_rows'; import { Runnable } from '../../databases/database_context'; import { SelectStatement } from '../../statements/select_statement'; import { DistinctRows } from './distinct_rows'; export declare class SelectSetsOfRows implements Runnable { statement: SelectStatement; constructor(statement: SelectStatement); limit(limit: number): LimitRows; distinct(): DistinctRows; readonly clientInstruction = "sets-of-rows"; } export declare function selectSetsOfRows(statement: SelectStatement, names: string[]): SelectSetsOfRows;