import { type JSX } from "woby"; export declare const variant: { text: string; contained: string; outlined: string; icon: string; }; type ButtonProps = JSX.ButtonHTMLAttributes & { buttonType?: "text" | "contained" | "outlined" | "icon"; }; export declare const Button: (props: ButtonProps) => JSX.Element; export {}; //# sourceMappingURL=Button.d.ts.map