import { FC } from 'react'; import { BaseRendererProps } from '@lingxiteam/engine-render'; import { DynamicPageProps } from '@/types'; declare type PropsType = Required['renderComponent']['Component'] extends FC ? T : never; interface ComponentProps extends PropsType { appId: string; api: Record; parseNodeBefore: DynamicPageProps['parseNodeBefore']; lcdpParentRenderId: string; } declare const Component: FC; export default Component;