import * as z from "zod/mini"; import { type Generation } from "./v3-generation.js"; export type { EventViewActivated, EventViewAllocationFailed, EventViewClosed, EventViewCloseFailed, EventViewPrerendered, } from "./view-host-lifecycle-events.js"; export { buildEventViewActivated, buildEventViewAllocationFailed, buildEventViewClosed, buildEventViewCloseFailed, buildEventViewPrerendered, eventViewActivatedSchema, eventViewAllocationFailedSchema, eventViewClosedSchema, eventViewCloseFailedSchema, eventViewPrerenderedSchema, } from "./view-host-lifecycle-events.js"; export declare const eventViewActivationDecidedSchema: z.ZodMiniObject<{ t: z.ZodMiniLiteral<"getuserfeedback:event:viewActivationDecided">; gen: z.core.$ZodBranded, "Generation", "out">; viewId: z.ZodMiniString; activationAttemptId: z.ZodMiniString; allowed: z.ZodMiniBoolean; }, z.core.$strict>; export type EventViewActivationDecided = z.output; export declare function buildEventViewActivationDecided(input: { gen: number | Generation; viewId: string; activationAttemptId: string; allowed: boolean; }): EventViewActivationDecided; //# sourceMappingURL=view-host-lifecycle-events-v3.d.ts.map