import { TungstenStatefulComponent } from 'tungsten/Components.jsx'; import { ContentNode, ContentNodeElement } from '../ContentNode.js'; export { ContentNode as ReactNode, ContentNodeElement as ReactElement }; export type PropsWithChildren
= P & { children?: ContentNode | undefined; }; type StatefulComponent
= TungstenStatefulComponent
;
import type * as PropTypes from 'prop-types';
type ValidationMap {
(props: P, context?: any): StatefulComponent | undefined;
contextTypes?: ValidationMap | undefined;
displayName?: string | undefined;
}
//# sourceMappingURL=types.d.ts.map