import { type HTMLButtonAttributes } from 'svelte/elements'; interface Props extends HTMLButtonAttributes { active?: boolean; id: string; label: string; } declare const TwoTabItem: import("svelte").Component; type TwoTabItem = ReturnType; export default TwoTabItem;