import { PropsWithChildren } from 'react'; import IconType from '../constants/IconType'; import { IconSize } from '../icon/bcicon'; import { Color } from '../constants/Color'; export type IconButtonProps = { onClick: () => void; size?: IconSize; icon: IconType; tooltipContent?: string; className?: string; color?: Color; }; export declare function IconButton({ onClick, icon, size, tooltipContent, className, color, }: PropsWithChildren): import("@emotion/react/jsx-runtime").JSX.Element;