import { Context } from "../context"; import { DatabaseRows, SelectDatabaseOptions, SelectRuntimeOptions } from "../db/db"; import { FieldSymbol, HashedTable, Structure, Table } from "../types"; export declare function select(target: Structure | Table | HashedTable | FieldSymbol, input: SelectDatabaseOptions, runtimeOptions: SelectRuntimeOptions, context: Context): Promise; export declare function rowsToTarget(target: Structure | Table | HashedTable | FieldSymbol, rows: DatabaseRows): void;