import { Option } from 'commander'; export declare const DEFAULT_CONFIG_FILE = "./magidoc.mjs"; export declare const CONFIG_FILE_OPTION: () => Option; export declare const STACKTRACE_OPTION: () => Option; export declare const CLEAN_OPTION: () => Option; export declare const PACKAGE_MANAGER_OPTION: () => Option; export type IntOptionParameters = { min?: number; max?: number; }; export declare function newPortOption(description: string, defaultValue: number): Option; export declare function newIntOption(flags: string, description?: string, params?: IntOptionParameters): Option;