import { Colors } from './Color'; type Colors = string | { link: string; hover?: string; active?: string; }; type Underline = 'never' | 'always' | 'hover'; interface Props extends Omit, 'color'> { color?: Colors; underline?: Underline; } export declare const ButtonLink: ({ color, underline, style: userStyle, className: userClassName, ...rest }: Props) => import("react/jsx-runtime").JSX.Element; export {};