import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; type ActionIcon = 'arrowRight' | 'download' | 'email' | 'calendar' | 'launch'; interface MiniCardProps { children?: ReactNode | null; href?: string | null; title: string | null; actionIcon?: ActionIcon | null; linkProps?: object | null; className?: string | null; } /** *The `` component can be used in place of a `` if your content allows it. Unless it is sitting beside your main content, it should always be wrapped inside of a ``. This allows the correct gutter and border placement between a group of cards * Although the mini-resource card has a similar geometry to the button component, they should not be used in place of a button. Buttons encourage action from the user and affect the website's front-end or back-end. The resource cards, both large and mini are essentially links. They are used for navigation and actions that do not affect the website. **/ export declare const MiniCard: MdxComponent; export {};