import { ReactNode, AriaAttributes, default as React } from 'react'; import { ButtonProps } from '../../'; export interface IconButtonProps extends Omit { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; /** * A React component that will be rendered as an icon. */ icon: ReactNode; /** * A Label should be provided. */ 'aria-label': AriaAttributes['aria-label']; } declare const IconButton: React.ForwardRefExoticComponent>; export default IconButton; //# sourceMappingURL=IconButton.d.ts.map