/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { HTMLAttributes, PropsWithChildren } from 'react';
export type LinkListProps = PropsWithChildren<HTMLAttributes<HTMLUListElement>>;
export declare const LinkList: import("react").ForwardRefExoticComponent<HTMLAttributes<HTMLUListElement> & {
    children?: import("react").ReactNode | undefined;
} & import("react").RefAttributes<HTMLUListElement>> & {
    Link: import("react").ForwardRefExoticComponent<{
        color?: "contrast" | "inverse";
        icon?: Function;
        size?: "small" | "large";
    } & import("react").AnchorHTMLAttributes<HTMLAnchorElement> & {
        children?: import("react").ReactNode | undefined;
    } & import("react").RefAttributes<HTMLAnchorElement>>;
};
