/// import { ServerOptions } from "./types"; declare type Parameters = { overrides?: Partial; defaults?: Partial; env?: NodeJS.ProcessEnv; }; /** * Merges configuration from defaults, environment variables, and overrides. * Finds private key using [`@probot/get-private-key`](https://github.com/probot/get-private-key). * * @see https://probot.github.io/docs/configuration/ * @param defaults default Options, will be overwritten if according environment variable is set * @param overrides overwrites defaults and according environment variables * @param env defaults to process.env */ export declare function getOptions({ overrides, defaults, env, }?: Parameters): ServerOptions; export {};