interface Props { width?: string; height?: string; id?: string; view?: 'editor' | 'preview' | 'default'; clickToLoad?: boolean; hideNavigation?: boolean; hideExplorer?: boolean; theme?: string | 'light' | 'dark' | 'default'; file: string | undefined; disable_observer?: boolean; iframe_styles?: string; } declare const Stackblitz: import("svelte").Component; type Stackblitz = ReturnType; export default Stackblitz;