import * as z from "zod";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type CreateAgreementSummaryRequest = {
    accountId?: string | null | undefined;
    agreementId?: string | null | undefined;
};
/** @internal */
export declare const CreateAgreementSummaryRequest$inboundSchema: z.ZodType<CreateAgreementSummaryRequest, z.ZodTypeDef, unknown>;
/** @internal */
export type CreateAgreementSummaryRequest$Outbound = {
    accountId: string | null;
    agreementId: string | null;
};
/** @internal */
export declare const CreateAgreementSummaryRequest$outboundSchema: z.ZodType<CreateAgreementSummaryRequest$Outbound, z.ZodTypeDef, CreateAgreementSummaryRequest>;
/**
 * @internal
 * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
 */
export declare namespace CreateAgreementSummaryRequest$ {
    /** @deprecated use `CreateAgreementSummaryRequest$inboundSchema` instead. */
    const inboundSchema: z.ZodType<CreateAgreementSummaryRequest, z.ZodTypeDef, unknown>;
    /** @deprecated use `CreateAgreementSummaryRequest$outboundSchema` instead. */
    const outboundSchema: z.ZodType<CreateAgreementSummaryRequest$Outbound, z.ZodTypeDef, CreateAgreementSummaryRequest>;
    /** @deprecated use `CreateAgreementSummaryRequest$Outbound` instead. */
    type Outbound = CreateAgreementSummaryRequest$Outbound;
}
export declare function createAgreementSummaryRequestToJSON(createAgreementSummaryRequest: CreateAgreementSummaryRequest): string;
export declare function createAgreementSummaryRequestFromJSON(jsonString: string): SafeParseResult<CreateAgreementSummaryRequest, SDKValidationError>;
//# sourceMappingURL=createagreementsummary.d.ts.map