import type { TungstenComponentPropsBase } from './Components.jsx'; import type { ContentNode } from './ContentNode.js'; import type { ComponentRenderInfo } from './ComponentRenderInfo.type.js'; import { TungstenStyleObject } from './TungstenStyleObject.js'; export type FunctionComponent = { (props: Props): ContentNode; style?: TungstenStyleObject; tagName?: string; displayName?: string; render?: ComponentRenderInfo; }; //# sourceMappingURL=FunctionComponent.d.ts.map