import { UIElement } from "ziko/dom";
import type { Variants } from '../../../types/shared/variants.ts'
declare class UIButton extends UIElement {}
export declare const Button: (props : {
text?: string,
variant: Variants,
color?: string,
}) => UIButton;