import { SelectOptions, SelectTable, TableObjectReturn } from './types';
import { PreparedStatement } from '../types';
export declare const tableObject: (table: SelectTable | undefined) => TableObjectReturn;
declare const selectStatement: (opts: SelectOptions) => PreparedStatement | string;
export default selectStatement;
