import { DatabaseConnection } from './types'; /** * fortunately for us, postgres does not come with built in `SHOW CREATE TABLE/VIEW/FUNCTION` * * we have to provide a way to do so manually. on the bright side, postgres does provide an extensive catalog system that we can leverage * * based on https://stackoverflow.com/questions/2593803/how-to-generate-the-create-table-sql-statement-for-an-existing-table-in-postgr */ export declare const provisionShowCreateTableFunction: ({ dbConnection, }: { dbConnection: DatabaseConnection; }) => Promise;