import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; export type Addon = { createdAt?: Date | undefined; createdBy?: string | undefined; description?: string | undefined; environmentId?: string | undefined; id?: string | undefined; lookupKey?: string | undefined; metadata?: { [k: string]: any; } | undefined; name?: string | undefined; status?: Status | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const Addon$inboundSchema: z.ZodMiniType; export declare function addonFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=addon.d.ts.map