import { NodeConstructor, Props } from '../../View'; import ViewNode from '../../ViewNode'; export interface Elements { createElement: (constructor: NC, props: Props, children?: JSX.Element[]) => ViewNode; cloneElement: (element: E) => E; extractProps:

(element: JSX.Element) => P; injectProps: (element: E, props: NP) => E; } export declare const elements: Elements; //# sourceMappingURL=elements.d.ts.map