import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type WorkspaceSummary = {
    /**
     * The ID of the workspace
     */
    workspaceId?: string | undefined;
    /**
     * The name of the workspace
     */
    name?: string | null | undefined;
    /**
     * The date the workspace was created
     */
    createdDate?: Date | null | undefined;
    /**
     * The ID of the user who created the workspace
     */
    createdByUserId?: string | undefined;
};
/** @internal */
export declare const WorkspaceSummary$inboundSchema: z.ZodType<WorkspaceSummary, z.ZodTypeDef, unknown>;
export declare function workspaceSummaryFromJSON(jsonString: string): SafeParseResult<WorkspaceSummary, SDKValidationError>;
//# sourceMappingURL=workspacesummary.d.ts.map