import { RunOptions } from "./OptionModel.js";
export type DefaultConfiguration = Omit<RunOptions, "sourceUrl" | "source" | "output" | "serviceName">;
/**
 * Creates a defensive copy of the default config.
 */
export declare function getDefaultConfig(): DefaultConfiguration;
/**
 * Creates a defensive copy of the minimal config: minimal in respect to naming.
 */
export declare function getMinimalConfig(): DefaultConfiguration;
