import React from 'react';
import { IC } from '../../types';
import { NewsProps } from './News';
type DetailButtonProps = {
    text: IC;
    link: string;
    style?: React.CSSProperties;
    type?: string;
    shape?: 'round' | 'square';
    icon?: string;
};
type DetailProps = {
    className?: string;
    style?: React.CSSProperties;
    title: IC;
    engine?: IC;
    description: IC;
    image?: string;
    imageStyle?: React.CSSProperties;
    buttons?: DetailButtonProps[];
    githubUrl: string;
    showGithubStars?: boolean;
    news: NewsProps[];
};
/**
 * Index.技术栈的描述区域！
 * 各自配置
 */
export declare const Detail: React.FC<DetailProps>;
export {};
