import { z } from 'zod'; /** * The shape of the model inside the application code - what the users use */ export declare const alert: z.ZodObject<{ action: z.ZodOptional; }, "strip", z.ZodTypeAny, { action?: string | undefined; }, { action?: string | undefined; }>; /** * Joined alert control * @typedef {Alert} alert - Joined alert control - Joined alert control * @property {string} */ export type Alert = z.infer; /** * The shape of the model mapping from the api schema into the application shape. * Is equal to application shape if all property names match the api schema */ export declare const alertResponse: z.ZodEffects; }, "strip", z.ZodTypeAny, { action?: string | undefined; }, { action?: string | undefined; }>, { action: string | undefined; }, { action?: string | undefined; }>; /** * The shape of the model mapping from the application shape into the api schema. * Is equal to application shape if all property names match the api schema */ export declare const alertRequest: z.ZodEffects>; }, "strip", z.ZodTypeAny, { action?: string | null | undefined; }, { action?: string | null | undefined; }>, { action: string | null | undefined; }, { action?: string | null | undefined; }>; //# sourceMappingURL=alert.d.ts.map