/** * Options used to start the server. * * @author Kenble - f.taddia */ interface StartServerOptions { config: string; } /** * Launch the saml2oidc-proxy app exposing the SAML endpoints and the oidc-provider callback. * * @author Kenble - f.taddia * @param inputOptions : server startup parameters */ export declare function startServer(inputOptions: StartServerOptions): Promise; export {};