import { ProveapiCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import * as errors from "../models/errors/index.js"; import { ProveapiError } from "../models/errors/proveapierror.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import * as operations from "../models/operations/index.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * AuthStart /v1/server/auth/start * * @remarks * To start an auth flow, send this AuthStart request to control how Prove Auth will authenticate the end users and * their devices. The expected authenticators should be included in the body parameters. There are many supported * scenarios to use Prove Auth so each of the request types are explained in the "Server Integration Guide". * * Production URL: https://oapi.prove-auth.proveapis.com/v1/server/auth/start */ export declare function authAuthStartRequest(client: ProveapiCore, request?: components.AuthStartRequest | undefined, options?: RequestOptions): APIPromise>; //# sourceMappingURL=authAuthStartRequest.d.ts.map