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 = PropTypes.ValidationMap; type WeakValidationMap = PropTypes.WeakValidationMap; export interface FunctionComponent

{ (props: P, context?: any): StatefulComponent | null; propTypes?: WeakValidationMap

| undefined; contextTypes?: ValidationMap | undefined; defaultProps?: Partial

| undefined; displayName?: string | undefined; } //# sourceMappingURL=types.d.ts.map