import { z } from 'zod';
export declare const AlertReferenceSchema: z.ZodObject<{
    child_ids: z.ZodArray<z.ZodString, "many">;
    parent_id: z.ZodString;
}, "strip", z.ZodTypeAny, {
    child_ids: string[];
    parent_id: string;
}, {
    child_ids: string[];
    parent_id: string;
}>;
export type AlertReference = z.infer<typeof AlertReferenceSchema>;
