import React from 'react';
import './index.less';
declare const BoxCard: ({ children, title, description }: {
    children: any;
    title: any;
    description: any;
}) => React.JSX.Element;
export default BoxCard;
