import React from 'react';
import { INavigationCard } from './types/navigationCard';
declare const NavigationCardBoundary: <V extends string | unknown>(props: INavigationCard<V>, ref: React.ForwardedRef<HTMLAnchorElement | HTMLButtonElement> | undefined | null) => JSX.Element;
declare const NavigationCard: <V extends string | unknown>(props: React.PropsWithChildren<INavigationCard<V>> & {
    ref?: React.ForwardedRef<HTMLAnchorElement | HTMLButtonElement> | undefined | null;
}) => ReturnType<typeof NavigationCardBoundary>;
export { NavigationCard };
