import { ComponentConfig } from '../types/component-config';
interface CreateMainComponentParams {
    componentName: string;
    config: ComponentConfig;
    componentType: string;
    flatFile: boolean;
}
export declare function createMainComponent({ componentName, config, componentType, flatFile }: CreateMainComponentParams): void;
export {};
