import { type SandpackFiles, type SandpackSetup, type SandpackThemeProp } from '@codesandbox/sandpack-react'; export type ModernSandpackProps = { template: 'web-app'; customSetup?: SandpackSetup; files?: SandpackFiles; removeFiles?: string[]; options?: Record; initialCollapsedFolder?: string[]; theme?: SandpackThemeProp; activeFile?: string; }; export default function ModernSandpack(props: ModernSandpackProps): import("react").JSX.Element;