import { NotificationRootProps } from './NotificationRoot';
interface NotificationLinkProps extends Omit<NotificationRootProps, "asChild"> {
    href: string;
}
/**
 * Composes {@link NotificationRoot} to provide a linkable notification.
 */
export declare const NotificationLink: ({ notification, children, href, }: NotificationLinkProps) => import("react").JSX.Element;
export {};
