///
import { Component } from "./Base";
declare global {
namespace JSX {
interface IntrinsicElements {
APP: React.PropsWithChildren;
}
}
}
export interface Props {
}
declare const _default: (p: Props) => {
appendChild: (child: Component) => void;
insertChild: (child: Component, beforeChild: Component) => void;
removeChild: (child: Component) => void;
updateProps: (changes: object) => void;
children: Component[];
};
export default _default;