import { GleanCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import * as components from "../models/components/index.js"; import { GleanBaseError } from "../models/errors/gleanbaseerror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Create authentication token * * @remarks * Creates an authentication token for the authenticated user. These are * specifically intended to be used with the [Web SDK](https://developers.glean.com/web). * * Note: The tokens generated from this endpoint are **not** valid tokens * for use with the Client API (e.g. `/rest/api/v1/*`). */ export declare function clientAuthenticationCreateToken(client: GleanCore, options?: RequestOptions): APIPromise>; //# sourceMappingURL=clientAuthenticationCreateToken.d.ts.map