import React from 'react'; export type IconLinkVerticalProps = { color?: 'primary' | 'secondary'; disabled?: boolean; href?: string; icon?: React.ReactNode; label: string; onClick?: React.MouseEventHandler; title?: string; }; /** @public */ export type IconLinkVerticalClassKey = 'link' | 'disabled' | 'primary' | 'secondary' | 'label'; /** @public */ export declare function IconLinkVertical({ color, disabled, href, icon, label, onClick, title, }: IconLinkVerticalProps): React.JSX.Element;