///
import { TextProps } from "reactjs-view";
import { IconsNames } from "../../atoms";
export interface SecondaryLinkProps {
title?: string;
onClick?: React.MouseEventHandler;
quiet?: boolean;
iconName?: IconsNames;
textTheme: TextProps["theme"];
textSize?: TextProps["size"];
readonly className?: string;
}
declare const SecondaryLink: ({ title, onClick, quiet, iconName, textTheme, textSize, className, }: SecondaryLinkProps) => JSX.Element;
export { SecondaryLink };
//# sourceMappingURL=index.d.ts.map