import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PushRenderOutput = { /** * Subject of the push notification */ subject: string; /** * Body of the push notification */ body: string; }; /** @internal */ export declare const PushRenderOutput$inboundSchema: z.ZodType; export declare function pushRenderOutputFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pushrenderoutput.d.ts.map