import { ButtonHTMLAttributes } from 'react';
export type IconButtonVariant = 'standard' | 'filled' | 'tonal' | 'outlined';
export type IconButtonSize = 'xs' | 'sm' | 'md' | 'lg';
export interface IconButtonProps extends Omit, 'children'> {
icon: string;
selectedIcon?: string;
variant?: IconButtonVariant;
size?: IconButtonSize;
toggle?: boolean;
selected?: boolean;
label: string;
}
export declare const IconButton: import('react').ForwardRefExoticComponent>;