import React from "react";
export type NavigationCardProps = {
    name: string;
    description?: string;
    actions: React.ReactNode;
    icon: React.ReactNode;
    onClick?: () => void;
    shrink?: boolean;
};
export declare const NavigationCard: React.NamedExoticComponent<NavigationCardProps>;
