import type { offline_IssueResponse } from '../models/offline_IssueResponse'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class TokenService { /** * Issue an app-scoped offline bearer token * * Issues a short-lived, app-scoped bearer token using the app API key alone * — no user session required. Intended for cron jobs and background workers * that operate outside a user iframe. The token expires after one hour; * re-mint it from the API key on expiry. * * @example * await assembly.offlineTokenIssue(); */ static offlineTokenIssue(): CancelablePromise; }