import { z } from "zod"; //#region src/cli/commands/machineuser/token.d.ts export interface GetMachineUserTokenOptions { name?: string; workspaceId?: string; profile?: string; configPath?: string; } export interface MachineUserTokenInfo { accessToken: string; tokenType: string; expiresAt: string; } /** * Get a machine user access token for the current application. * @param options - Token retrieval options * @returns Machine user token info */ export declare function getMachineUserToken(options: GetMachineUserTokenOptions): Promise; //#endregion