import React, { MouseEventHandler, PropsWithChildren } from 'react'; export type IconButtonProps = { onClick?: MouseEventHandler; }; /** * This is simply a button wrapper, adds a div with `role="button"` and a onClick */ export declare const IconButton: ({ children, onClick }: PropsWithChildren) => React.JSX.Element; //# sourceMappingURL=IconButton.d.ts.map