import type React from 'react';
import { type BoxProps } from '../Box';
type ActionBoxProps = BoxProps & {
    title: string;
    description: string;
    icon: React.ReactNode;
    href?: string;
};
export declare const ActionBox: React.FC<ActionBoxProps>;
export {};
