import { z } from 'zod';
export declare const GetAllAlertsQuerySchema: z.ZodObject<{
    realtime: z.ZodEffects<z.ZodBoolean, boolean, unknown>;
}, "strip", z.ZodTypeAny, {
    realtime: boolean;
}, {
    realtime?: unknown;
}>;
export type GetAllAlertsQuery = z.infer<typeof GetAllAlertsQuerySchema>;
