export default CodeLanguageSwitcher; type CodeLanguageSwitcher = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial): void; }; declare const CodeLanguageSwitcher: import("svelte").Component<{ /** * Whether to disable the switcher. */ disabled?: boolean | undefined; }, {}, "">; type Props = { /** * Whether to disable the switcher. */ disabled?: boolean | undefined; };