import { z } from "zod"; export declare const dappLinksSchema: z.ZodArray, "many">; export declare const dappContractsSchema: z.ZodOptional, "many">>; export declare const knownDappSchema: z.ZodObject<{ dappId: z.ZodString; name: z.ZodString; description: z.ZodString; logoUrl: z.ZodString; dappUrl: z.ZodOptional; inAppBrowserCompatible: z.ZodBoolean; argentVerified: z.ZodBoolean; links: z.ZodArray, "many">; contracts: z.ZodOptional, "many">>; categories: z.ZodOptional>; supportedApps: z.ZodOptional>; dappland: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; description: string; dappId: string; logoUrl: string; inAppBrowserCompatible: boolean; argentVerified: boolean; links: { name: string; url: string; position: number; }[]; dappUrl?: string | undefined; contracts?: { chain: string; address: string; }[] | undefined; categories?: string[] | undefined; supportedApps?: string[] | undefined; dappland?: string | undefined; }, { name: string; description: string; dappId: string; logoUrl: string; inAppBrowserCompatible: boolean; argentVerified: boolean; links: { name: string; url: string; position: number; }[]; dappUrl?: string | undefined; contracts?: { chain: string; address: string; }[] | undefined; categories?: string[] | undefined; supportedApps?: string[] | undefined; dappland?: string | undefined; }>; export declare const knownDappsSchema: z.ZodArray; inAppBrowserCompatible: z.ZodBoolean; argentVerified: z.ZodBoolean; links: z.ZodArray, "many">; contracts: z.ZodOptional, "many">>; categories: z.ZodOptional>; supportedApps: z.ZodOptional>; dappland: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; description: string; dappId: string; logoUrl: string; inAppBrowserCompatible: boolean; argentVerified: boolean; links: { name: string; url: string; position: number; }[]; dappUrl?: string | undefined; contracts?: { chain: string; address: string; }[] | undefined; categories?: string[] | undefined; supportedApps?: string[] | undefined; dappland?: string | undefined; }, { name: string; description: string; dappId: string; logoUrl: string; inAppBrowserCompatible: boolean; argentVerified: boolean; links: { name: string; url: string; position: number; }[]; dappUrl?: string | undefined; contracts?: { chain: string; address: string; }[] | undefined; categories?: string[] | undefined; supportedApps?: string[] | undefined; dappland?: string | undefined; }>, "many">; export type KnownDapp = z.infer; export type KnownDapps = z.infer;