import { Property } from '../../../../domain'; export declare const generateTable: ({ tableName, properties, unique, }: { tableName: string; properties: { [index: string]: Property; }; unique: string[]; }) => string;