/**
 * Check if the argument is treated as an options object by Node.js.
 * For checking if the argument can be used as options for a outgoing HTTP request.
 */
export declare function isOptionsObject(arg: any): arg is {
    [key: string]: unknown;
};
