import { ButtonHTMLAttributes } from 'react'; export type IButtonProps = ButtonHTMLAttributes & { kind: "primary" | "secondary" | "tertiary" | "ghost" | "dangerPrimary" | "dangerTertiary" | "dangerGhost"; size: "large" | "medium" | "small" | "extraLarge" | "twoXLarge" | "expressive"; label?: string; url?: string; onClick?: () => void; loading?: boolean; disabled?: boolean; }; export declare const Button: (props: IButtonProps) => import("react/jsx-runtime").JSX.Element;