export default Tab; type Tab = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A tab widget. * @see https://w3c.github.io/aria/#tab * @see https://www.w3.org/WAI/ARIA/apg/patterns/tabs/ */ declare const Tab: import("svelte").Component, {}, "">; type Props = { /** * Whether to select the widget. An alias of the `aria-selected` * attribute. */ selected?: boolean | undefined; }; import type { ButtonProps } from '../../typedefs';