import { type Json, type UiNode, type Responsive } from "../internal.ts"; type ButtonProps = { name?: string; value?: Json; action?: Json; variant?: "default" | "primary" | "danger"; size?: Responsive<"sm" | "md">; iconSide?: "start" | "end"; disabled?: boolean; submit?: boolean; children?: UiNode; } & ({ icon: `material-symbols:${string}`; iconOnly?: Responsive; } | { icon?: undefined; iconOnly?: undefined; }); export declare function Button(props: ButtonProps): UiNode; export {};