import { SvelteComponentTyped } from "svelte"; declare const __propDef: { props: { class?: string | undefined; value?: number | undefined; activeClass?: string | undefined; disabled?: boolean | undefined; }; events: { click: MouseEvent; } & { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export declare type TabProps = typeof __propDef.props; export declare type TabEvents = typeof __propDef.events; export declare type TabSlots = typeof __propDef.slots; export default class Tab extends SvelteComponentTyped { } export {};