import { z } from 'zod'; export declare const linkSchema: z.ZodObject<{ label: z.ZodString; linkType: z.ZodEnum<["default", "page", "internalModal", "externalModal"]>; shouldDisplayAsButton: z.ZodBoolean; variant: z.ZodEnum<["Standard", "Secondary-cta", "Subtle", "Inverted"]>; url: z.ZodString; target: z.ZodEnum<["_blank", "_self"]>; iconType: z.ZodString; iconPosition: z.ZodEnum<["left", "right"]>; _type: z.ZodLiteral<"atLink">; }, "strip", z.ZodTypeAny, { label: string; linkType: "default" | "page" | "internalModal" | "externalModal"; shouldDisplayAsButton: boolean; variant: "Standard" | "Secondary-cta" | "Subtle" | "Inverted"; url: string; target: "_blank" | "_self"; iconType: string; iconPosition: "left" | "right"; _type: "atLink"; }, { label: string; linkType: "default" | "page" | "internalModal" | "externalModal"; shouldDisplayAsButton: boolean; variant: "Standard" | "Secondary-cta" | "Subtle" | "Inverted"; url: string; target: "_blank" | "_self"; iconType: string; iconPosition: "left" | "right"; _type: "atLink"; }>; export declare const linkQuery: string; //# sourceMappingURL=link.d.ts.map