import { z } from "zod"; import { ServiceNowClient } from "../client.js"; import { ServiceNowConfig } from "../config.js"; export declare const definition: { name: string; description: string; inputSchema: { type: "object"; properties: { ci_name: { type: string; description: string; }; sys_id: { type: string; description: string; }; depth: { type: string; description: string; }; direction: { type: string; enum: string[]; description: string; }; type: { type: string; description: string; }; class: { type: string; description: string; }; impact: { type: string; description: string; }; }; required: never[]; }; }; export declare const schema: z.ZodObject<{ ci_name: z.ZodOptional; sys_id: z.ZodOptional; depth: z.ZodOptional; direction: z.ZodDefault>>; type: z.ZodOptional; class: z.ZodOptional; impact: z.ZodDefault>; }, "strip", z.ZodTypeAny, { direction: "upstream" | "downstream" | "both"; impact: boolean; type?: string | undefined; sys_id?: string | undefined; ci_name?: string | undefined; depth?: number | undefined; class?: string | undefined; }, { type?: string | undefined; sys_id?: string | undefined; ci_name?: string | undefined; depth?: number | undefined; direction?: "upstream" | "downstream" | "both" | undefined; class?: string | undefined; impact?: boolean | undefined; }>; export declare function handler(args: z.infer, client: ServiceNowClient, config: ServiceNowConfig): Promise<{ content: Array<{ type: "text"; text: string; }>; }>; //# sourceMappingURL=relationships.d.ts.map