import type { Snippet } from 'svelte'; import type { DockSize } from './Dock.svelte'; interface DockItemProps { as?: 'button' | 'a'; href?: string; onclick?: (e: MouseEvent) => void; disabled?: boolean; active?: boolean; size?: DockSize; ariaLabel?: string; class?: string; children?: Snippet; } declare const DockItem: import("svelte").Component; type DockItem = ReturnType; export default DockItem;