import React from 'react';
import { UserProfileMenuCard, UserProfileTheme } from "../types";
export type NavigationCardProps = {
    type: UserProfileMenuCard;
    themeName: UserProfileTheme;
    onClick?: (type: UserProfileMenuCard) => void;
    className?: string;
};
declare const NavigationCard: ({ type, themeName, className, onClick, }: NavigationCardProps) => React.JSX.Element;
export { NavigationCard };
