/** 图标按钮 — 无边框方形热区,包裹一个线性 SVG 图标。 */ export interface IconButtonProps { /** 方形边长 px @default 32 */ size?: number; /** 无障碍标签(必填语义) */ label?: string; disabled?: boolean; onClick?: (e: any) => void; /** 内联 SVG 图标(Lucide 风格,stroke=currentColor) */ children?: any; } export declare function IconButton(props: IconButtonProps): any;