import type { HTMLAttributes } from "@builder.io/qwik";
type ButtonProps = {
class?: string;
variant?: "primary" | "secondary" | "default";
theme?: "light" | "dark";
href?: string;
disabled?: boolean;
} & HTMLAttributes;
export declare const Button: import("@builder.io/qwik").Component;
export {};