/**
 * @license EUPL-1.2+
 * Copyright Gemeente Amsterdam
 */
import type { AnchorHTMLAttributes } from 'react';
export type TopTaskLinkProps = {
    /** The text content. */
    description: string;
    /** The title. */
    label: string;
} & AnchorHTMLAttributes<HTMLAnchorElement>;
export declare const TopTaskLink: import("react").ForwardRefExoticComponent<{
    /** The text content. */
    description: string;
    /** The title. */
    label: string;
} & AnchorHTMLAttributes<HTMLAnchorElement> & import("react").RefAttributes<HTMLAnchorElement>>;
