import { ButtonProps } from './types/Button.props.ts'; import type * as React from 'react'; /** * Text-label action button. Requires a visible `label`. Renders a native * anchor when `href` is provided. Supports `variant` (contained|outlined|ghost), * semantic `color`, `size` (sm|md|lg), and optional `startIcon`/`endIcon` * Iconify identifiers. */ declare const Button: React.FC; export default Button;