interface Props { children?: import('svelte').Snippet; value?: string; orientation?: 'horizontal' | 'vertical'; activation?: 'automatic' | 'manual'; class?: string; id?: string; onValueChange?: (v: string) => void; } declare const Tabs: import("svelte").Component; type Tabs = ReturnType; export default Tabs;