import { FC } from 'react';
import { IC } from '../../../types';
import '@logicflow/core/es/index.css';
import '@logicflow/extension/es/index.css';
type containerProps = {
    title: IC;
    engine?: IC;
    description: IC;
    buttons?: any;
    githubUrl: string;
    showGithubStars?: boolean;
    features: any;
    advantages: any;
};
export declare const LfContainer: FC<containerProps>;
export {};
