import { FC, ReactNode } from 'react'; export interface PluginRoutesProps { /** Fallback shown while lazy-loaded plugin routes are loading */ fallback?: ReactNode; /** Content rendered when no plugin route matches the current path */ notFound?: ReactNode; } export declare const PluginRoutes: FC; //# sourceMappingURL=PluginRoutes.d.ts.map