import { Command } from 'commander'; interface PsqlOptions { url: string; command?: string; file?: string; quiet?: boolean; continueOnError?: boolean; showProgress?: boolean; } export declare function createPsqlCommand(): Command; declare function executePsqlCommand(options: PsqlOptions): Promise; export { executePsqlCommand }; //# sourceMappingURL=psql.d.ts.map