import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type CreateWorkspaceDocumentOwner = {
    userId?: string | null | undefined;
    firstName?: string | null | undefined;
    lastName?: string | null | undefined;
};
/** @internal */
export declare const CreateWorkspaceDocumentOwner$inboundSchema: z.ZodType<CreateWorkspaceDocumentOwner, z.ZodTypeDef, unknown>;
export declare function createWorkspaceDocumentOwnerFromJSON(jsonString: string): SafeParseResult<CreateWorkspaceDocumentOwner, SDKValidationError>;
//# sourceMappingURL=createworkspacedocumentowner.d.ts.map