import * as z from "zod/v4-mini"; export type DeleteCreditGrantRequest = { /** * EffectiveDate is optional; when set (subscription scope) the grant end date is set to this time. */ effectiveDate?: Date | undefined; }; /** @internal */ export type DeleteCreditGrantRequest$Outbound = { effective_date?: string | undefined; }; /** @internal */ export declare const DeleteCreditGrantRequest$outboundSchema: z.ZodMiniType; export declare function deleteCreditGrantRequestToJSON(deleteCreditGrantRequest: DeleteCreditGrantRequest): string; //# sourceMappingURL=delete-credit-grant-request.d.ts.map