import { ThemeConfig } from 'antd';
import React from 'react';
import { TComponentProps } from './App/components/Types';
export interface IQuickUI {
    components: TComponentProps[];
    theme?: ThemeConfig;
}
declare const QuickUI: ({ components, theme }: IQuickUI) => React.JSX.Element;
export default QuickUI;
