export declare const LINK_SIZES: readonly ["xs", "sm", "md", "lg"]; export declare const LINK_VARIANTS: readonly ["primary", "strict", "white"]; export declare const LINK_UNDERLINES: readonly ["always", "hover", "none"]; export type LinkSize = (typeof LINK_SIZES)[number]; export type LinkVariant = (typeof LINK_VARIANTS)[number]; export type LinkUnderline = (typeof LINK_UNDERLINES)[number];