import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type PlanSummary = { /** * description of the plan */ description?: string | undefined; /** * id of the plan */ id?: string | undefined; /** * lookup_key of the plan */ lookupKey?: string | undefined; /** * name of the plan */ name?: string | undefined; }; /** @internal */ export declare const PlanSummary$inboundSchema: z.ZodMiniType; export declare function planSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=plan-summary.d.ts.map