import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { tabs: { href: string; title: string; }[]; selectedTab: string; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type LinkTabListProps = typeof __propDef.props; export type LinkTabListEvents = typeof __propDef.events; export type LinkTabListSlots = typeof __propDef.slots; export default class LinkTabList extends SvelteComponentTyped { } export {};