import type { ForeignComponent, BaseComponentProps } from 'piral-core'; import { IModule } from 'angular'; export interface NgjsConverterOptions { /** * Defines the name of the root element. * @default piral-slot */ rootName?: string; } export declare function createConverter(config?: NgjsConverterOptions): { (name: string, root: IModule): ForeignComponent; Extension: IModule; };