import { Type } from '@angular/core'; import './jsx'; import { ChildDef, ClassComponentType, ElementDef, FunctionComponentType } from './types'; export declare function createElement
(type: ClassComponentType
| FunctionComponentType
| Type | string, props?: P, ...children: ChildDef[]): ElementDef;
;