import { CardProps } from "@material-ui/core/Card";
import React from "react";
export interface NavigationCardProps extends CardProps {
title: string;
description: string;
icon: React.ReactNode;
}
export declare const NavigationCard: React.FC<NavigationCardProps>;