import { z } from "zod"; export declare const isBannerEvent: z.ZodObject<{ id: z.ZodString; text: z.ZodString; bgColor: z.ZodOptional; textColor: z.ZodOptional; closable: z.ZodOptional>; timeToClose: z.ZodOptional>; link: z.ZodOptional>; }, "strip", z.ZodTypeAny, { text: string; id: string; link?: { url: string; label: string; } | undefined; closable?: boolean | undefined; bgColor?: string | undefined; textColor?: string | undefined; timeToClose?: number | undefined; }, { text: string; id: string; link?: { url: string; label: string; } | undefined; closable?: boolean | undefined; bgColor?: string | undefined; textColor?: string | undefined; timeToClose?: number | undefined; }>; export type BannerEvent = z.infer;