import { FunctionComponent, h } from "preact"; export type ButtonProps = h.JSX.HTMLAttributes & { variant?: "primary" | "secondary"; }; export declare const Button: FunctionComponent;