import { ReactNode } from 'react'; import { PlugComponentType } from './types'; declare type Props = { children?: ReactNode; component: PlugComponentType; pluginName: string; slotProps: object; }; export declare function PlugConnect({ children, component, pluginName, slotProps, }: Props): import('react').ReactElement< import('./types').PlugProps, | string | ((props: any) => import('react').ReactElement | null) | (new (props: any) => import('react').Component) >; export {};