import { ReactNode } from 'react'; export interface ScopeProps { path: string; children: ReactNode; } export default function Scope({ path, children }: ScopeProps): JSX.Element;