import * as z from "zod/v4-mini"; import { CustomerBenefitGrantUpdate, CustomerBenefitGrantUpdate$Outbound } from "../components/customerbenefitgrantupdate.js"; export type CustomerPortalBenefitGrantsUpdateSecurity = { customerSession?: string | undefined; memberSession?: string | undefined; }; export type CustomerPortalBenefitGrantsUpdateRequest = { /** * The benefit grant ID. */ id: string; customerBenefitGrantUpdate: CustomerBenefitGrantUpdate; }; /** @internal */ export type CustomerPortalBenefitGrantsUpdateSecurity$Outbound = { customer_session?: string | undefined; member_session?: string | undefined; }; /** @internal */ export declare const CustomerPortalBenefitGrantsUpdateSecurity$outboundSchema: z.ZodMiniType; export declare function customerPortalBenefitGrantsUpdateSecurityToJSON(customerPortalBenefitGrantsUpdateSecurity: CustomerPortalBenefitGrantsUpdateSecurity): string; /** @internal */ export type CustomerPortalBenefitGrantsUpdateRequest$Outbound = { id: string; CustomerBenefitGrantUpdate: CustomerBenefitGrantUpdate$Outbound; }; /** @internal */ export declare const CustomerPortalBenefitGrantsUpdateRequest$outboundSchema: z.ZodMiniType; export declare function customerPortalBenefitGrantsUpdateRequestToJSON(customerPortalBenefitGrantsUpdateRequest: CustomerPortalBenefitGrantsUpdateRequest): string; //# sourceMappingURL=customerportalbenefitgrantsupdate.d.ts.map