import React from 'react';
import { IC } from '../../types';
export interface NewsProps {
    index?: number;
    type: IC;
    title: IC;
    date: string;
    link: string;
    subTitle?: string;
    img?: string;
}
export declare const News: React.FC<NewsProps>;
