import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
/**
 * A party is a person, group, or organization that is involved in a contract and has legally binding obligations and responsibilities. They also seek to benefit from the agreement.
 *
 * @remarks
 */
export type Party = {
    /**
     * Unique identifier for the party, mapped to the party entity reference.
     */
    id: string;
    /**
     * Name of the party as it appears in the agreement.
     */
    nameInAgreement?: string | null | undefined;
    /**
     * Formal name of the party.
     */
    preferredName?: string | null | undefined;
};
/** @internal */
export declare const Party$inboundSchema: z.ZodType<Party, z.ZodTypeDef, unknown>;
/** @internal */
export type Party$Outbound = {
    id: string;
    name_in_agreement?: string | null | undefined;
    preferred_name?: string | null | undefined;
};
/** @internal */
export declare const Party$outboundSchema: z.ZodType<Party$Outbound, z.ZodTypeDef, Party>;
export declare function partyToJSON(party: Party): string;
export declare function partyFromJSON(jsonString: string): SafeParseResult<Party, SDKValidationError>;
//# sourceMappingURL=party.d.ts.map