import "./btn.css"; import React from "react"; import { BaseButtonElementProps } from "./BaseButton"; export type IconButtonProps = Omit & { /** Accessible label. Required for icon-only buttons to provide context about the button's purpose. */ "aria-label": string; /** The icon to display in the button. Set via story args for non-primitive values. */ icon: React.ReactNode; }; /** * An icon-only button component that renders as a button element. * Requires an icon and aria-label for accessibility. * * @component */ export declare const IconButton: React.ForwardRefExoticComponent & { /** Accessible label. Required for icon-only buttons to provide context about the button's purpose. */ "aria-label": string; /** The icon to display in the button. Set via story args for non-primitive values. */ icon: React.ReactNode; } & React.RefAttributes>; //# sourceMappingURL=IconButton.d.ts.map