import { Command } from 'commander';
export declare const createProgram: () => Command;
type GetOptionsParameters = {
    program?: Command;
};
export declare const getOptions: ({ program, }?: GetOptionsParameters) => {
    dbname: string;
    host: string;
    outputPath: string;
    password: string;
    port: number;
    schema: string;
    username: string;
    excludedTables?: string[] | undefined;
};
export {};
