import type { FC, ReactNode } from 'react'; import { type TextProps } from '..'; export interface IconButtonProps { icon: ReactNode; label: string; href?: string; onClick?: () => void; showIconOnly?: boolean; className?: string; labelProps?: TextProps; disabled?: boolean; loading?: boolean; } export declare const IconButton: FC;