import { WorkspaceDetails } from "./transform.mjs"; import { ReportedExpiry } from "./expiry.mjs"; import { z } from "zod"; //#region src/cli/commands/workspace/get.d.ts declare const getWorkspaceOptionsSchema: z.ZodObject<{ workspaceId: z.ZodOptional; profile: z.ZodOptional; }, z.core.$strip>; export type GetWorkspaceOptions = z.input; /** A workspace's details, plus the prune expiry it records. */ export type WorkspaceDetailsWithExpiry = WorkspaceDetails & { expiresAt: ReportedExpiry; }; /** * Get detailed information about a workspace. * @param options - Workspace get options * @returns Workspace details */ export declare function getWorkspace(options: GetWorkspaceOptions): Promise; //#endregion