import type { Snippet } from 'svelte'; import type { IProjectConfig } from '@theatre/core'; interface Props { studio?: { enabled?: boolean; hide?: boolean; }; config?: IProjectConfig | undefined; children?: Snippet; } declare const Theatre: import("svelte").Component; type Theatre = ReturnType; export default Theatre;