import type { Child, Component, FunctionMaybe } from '../types'; declare const Dynamic:

({ component, props, children }: { component: Component

; props?: FunctionMaybe

| undefined; children?: Child; }) => Child; export default Dynamic;