import { FragmentSQL } from './types';
export declare function into(table: string): string;
export declare function insert(table: string, values: Record<string, any>[] | Record<string, any>): FragmentSQL;
export declare const i: typeof insert;
export declare const it: typeof into;
