{
-- (props: P, context?: any): ReactElement | undefined;
-- contextTypes?: ValidationMap | undefined;
-- displayName?: string | undefined;
--}
-+
- interface Addon_PageType {
- type: Addon_TypesEnum.experimental_PAGE;
- /**
-@@ -4593,7 +4581,7 @@ interface Addon_PageType {
- /**
- * The title is used in mobile mode to represent the page in the navigation.
- */
-- title: FCWithoutChildren | string | ReactElement | ReactNode;
-+ title: FC | string | ReactElement | ReactNode;
- /**
- * The main content of the addon, a function component without any props.
- * Storybook will render your component always.
-@@ -4610,7 +4598,7 @@ interface Addon_PageType {
- * );
- * };
- */
-- render: FCWithoutChildren;
-+ render: FC;
- }
- interface Addon_WrapperType {
- type: Addon_TypesEnum.PREVIEW;
-@@ -4640,7 +4628,7 @@ interface Addon_SidebarBottomType {
- /**
- * A React.FunctionComponent.
- */
-- render: FCWithoutChildren;
-+ render: FC;
- }
- interface Addon_SidebarTopType {
- type: Addon_TypesEnum.experimental_SIDEBAR_TOP;
-@@ -4651,7 +4639,7 @@ interface Addon_SidebarTopType {
- /**
- * A React.FunctionComponent.
- */
-- render: FCWithoutChildren;
-+ render: FC;
- }
- type Addon_TypeBaseNames = Exclude