import { ClassValue } from 'clsx'; import React from 'react'; import { IconProps } from '../icons'; import * as styles from './styles.css'; export type Props = React.ButtonHTMLAttributes & styles.Variants & { icon: React.ReactElement; cssClass?: ClassValue | ClassValue[]; }; export declare const ButtonIcon: React.ForwardRefExoticComponent & { shape?: "thin" | "square" | undefined; emphasis?: "none" | "medium" | "high" | "low" | undefined; size?: "small" | "medium" | "xSmall" | "minimal" | undefined; kind?: "primary" | "secondary" | undefined; } & { icon: React.ReactElement; cssClass?: ClassValue | ClassValue[]; } & React.RefAttributes>;