import type { Snippet } from 'svelte'; type ButtonVariant = 'primary' | 'secondary' | 'ghost' | 'outline' | 'destructive'; type ButtonSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl'; interface ButtonProps { variant?: ButtonVariant; size?: ButtonSize; loading?: boolean; disabled?: boolean; fullWidth?: boolean; href?: string; type?: 'button' | 'submit' | 'reset'; class?: string; children?: Snippet; onclick?: (e: MouseEvent) => void; [key: string]: unknown; } declare const Button: import("svelte").Component; type Button = ReturnType; export default Button;