import type { FunctionComponent, ComponentClass } from 'react'; import type { LinkProvidedProps } from './types'; export type LinkProps = { /** Array of links to render. */ links?: Link[]; /** Component for rendering a single link. */ linkComponent: FunctionComponent> | ComponentClass>; /** Classname to add to each link parent g element. */ className?: string; }; export default function Links({ links, linkComponent, className }: LinkProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Links.d.ts.map