import React from "react"; export interface Props { itemsList: { url?: string; text: string; variants?: string; onClick?: () => void; }[]; } export declare const HyperLinksList: (props: Props) => React.JSX.Element;