import type { HTMLButtonAttributes } from 'svelte/elements';
import { type ButtonVariant, type ButtonSize } from './button.variants';
import type { ClassValue } from 'tailwind-variants';
type Props = Omit<HTMLButtonAttributes, 'class'> & {
    variant?: ButtonVariant;
    size?: ButtonSize;
    class?: ClassValue;
};
declare const Button: import("svelte").Component<Props, {}, "">;
type Button = ReturnType<typeof Button>;
export default Button;
