import { AnchorHTMLAttributes, type FC, type PropsWithChildren } from "react"; import { type ColorName } from "../../Foundations"; export declare const classes: { underlineOnHover: string; underlineAlways: string; underlineNever: string; }; export interface BlokLinkProps extends AnchorHTMLAttributes { colorScheme?: ColorName; underline?: "always" | "hover" | "never"; className?: string; } export declare const BlokLink: FC>; //# sourceMappingURL=BlokLink.d.ts.map