import { z } from "zod"; export declare const checkContractSecurityInput: z.ZodObject<{ address: z.ZodString; chain: z.ZodEnum<[string, ...string[]]>; }, "strip", z.ZodTypeAny, { address: string; chain: string; }, { address: string; chain: string; }>; export declare const checkPermissionRisksInput: z.ZodObject<{ address: z.ZodString; chain: z.ZodEnum<[string, ...string[]]>; }, "strip", z.ZodTypeAny, { address: string; chain: string; }, { address: string; chain: string; }>; export declare const getProtocolRiskScoreInput: z.ZodObject<{ protocol: z.ZodString; }, "strip", z.ZodTypeAny, { protocol: string; }, { protocol: string; }>; export type CheckContractSecurityArgs = z.infer; export type CheckPermissionRisksArgs = z.infer; export type GetProtocolRiskScoreArgs = z.infer;