import { type Snippet } from 'svelte'; import type { IconComponent } from '../icon/Icon.svelte'; interface Props { id: string; title: string; children?: Snippet; icon?: IconComponent; } declare const TabPanel: import("svelte").Component; type TabPanel = ReturnType; export default TabPanel;