export declare class NodeOptionReader {
    /**
     * Read option based on the option name. If the option doesn't start with `--`
     * additional prefix will be added.
     * @param optionName option name
     * @returns option value
     */
    static read(optionName: string, argv?: string[], nodeOptions?: string | undefined): string | boolean | undefined;
}
